increment

Specifies the interval between the values when a user increments or decrements the Spinner. For example, a value of 15 indicates the Spinner should traverse values of 0, 15, 30, 45, etc. (assuming that min=0).

Type

Number

Spinner increment

Example

Spinner1.increment = 20;

Either syntax below can be used in component script:

increment               // unqualified
Spinner1.increment      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.