AutoReverse in NumericUpDown
29 Jun 2020 / 1 minute to read
While incrementing, the control will start from Minimum once it reaches the Maximum and vice-versa.
NOTE
By default the property value is false.
[C#]
numeric.AutoReverse = true;
Continuous Spinning Between Ranges
User can restrict the Values between a specific range by setting Maximum
and Minimum
property value.
NOTE
By default the minimum property value is 0 and maximum property value is 100.
[C#]
numeric.Minimum = 10;
numeric.Maximum = 50
Set Increment
Frequency in which values gets incremented can be decided using StepValue
property.
NOTE
By default the property value is 1.
[C#]
numeric.StepValue = 6;
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page