Gets or sets a value defining a lower boundary of a range that an input conversion value should fit into.

Namespace:  C1.WPF.C1Schedule
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public Object RangeStart { get; set; }
Visual Basic (Declaration)
Public Property RangeStart As Object
	Get
	Set

Remarks

This property takes effect only if the Value property is set to NotSpecified.

If the RangeStart property value is set to any value different from NotSpecified, then an input value is checked to be greater than or equal to the RangeStart property value, in the case if the RangeStartExclusive property value is False, or to be strongly greater if RangeStartExclusive is True.

If the property value is NotSpecified, then a lower boundary treats as an open one and an input value is tested against the RangeEnd property value only.

See Also