C1TimeEditor Control Help > C1TimeEditor Task-Based Help > Setting the Spin Interval |
By default, the C1TimeEditor.Interval property is set to 33 milliseconds, which allows users to scroll through the time values at faster rates. In this topic, you will specify a longer interval between value changes by setting the Interval property to 1000 milliseconds. For more information on spin intervals, visit the Spin Interval topic.
In the Designer
Complete the following steps:
In XAML
Complete the following steps:
<my:C1TimeEditor Interval="1000"/>
In Code
Complete the following steps:
Visual Basic |
Copy Code
|
---|---|
C1TimeEditor1.Interval = 1000 |
C# |
Copy Code
|
---|---|
c1TimeEditor1.Interval = 1000; |