Gets or sets a value defining an upper 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 RangeEnd { get; set; }
Visual Basic (Declaration)
Public Property RangeEnd As Object
	Get
	Set

Remarks

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

If the RangeEnd property value is set to any value different from NotSpecified, then an input value is checked to be less than or equal to the RangeEnd property value, in the case if the RangeEndExclusive property value is False, or to be strongly less if RangeEndExclusive 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 RangeStart property value only.

See Also