"pageStep";

Specifies the step of a slider when pressing PageUp / PageDown or clicking with the mouse on the slider.

Synopsis

shape.pageStep( intstep);

Parameter

Parameter Description
shape Name of the object
step How many values (steps) the slider should move.

Description

Specifies the step of a slider when pressing PageUp / PageDown or clicking with the mouse on the slider.

Example

The following example sets pageStep to 25.

main(bool enter)
{
  SLIDER1.pageStep(25);
}

Assignment

Slider