Increment
This property applies to spinners and determines how much the spinner changes each time you click one of the arrows.
Usage |
spnSpinner.Increment = nValue nValue = spnSpinner.Increment |
Example |
* Update spinner increment to be based on the spinner value * The following code goes in the spinner's InteractiveChange * method, so the increment is checked each time the spinner * value changes. DO CASE CASE This.Value < 100 This.Increment = 2 CASE This.Value < 200 This.Increment = 5 OTHERWISE This.Increment = 10 ENDCASE |
See Also |
KeyboardHighValue, KeyboardLowValue, SpinnerHighValue, SpinnerLowValue |