Determines the C1TimeEditor behavior at changing its value by up/down buttons or arrow keys when Value property is equal to Minimum or Maximum property value. The default is true.

Namespace:  C1.WPF.DateTimeEditors
Assembly:  C1.WPF.DateTimeEditors (in C1.WPF.DateTimeEditors.dll)
XMLNS for XAML: http://schemas.componentone.com/wpf/DateTimeEditors

Syntax

C#
public bool CycleChangesOnBoundaries { get; set; }
Visual Basic (Declaration)
Public Property CycleChangesOnBoundaries As Boolean
	Get
	Set
XAML Attribute Usage
<object CycleChangesOnBoundaries="bool" .../>

Remarks

By default, if C1TimeEditor.Value property reaches C1TimeEditor.Maximum property value, the next click on Up button will cause changing C1TimeEditor.Value property to C1TimeEditor.Minimum property value. If CycleChangesOnBoundaries property value is false and C1TimeEditor.Value property equals to C1TimeEditor.Maximum property value, all clicks on Up button will be ignored. The same behavior is true for the Down button and Minimum property.

See Also