labelPosition

Specifies the position of the label relative to the Spinner component. See Slider/Spinner Properties for information on the ‘Label Position’ option.

Type

String
  • 'top': label appears above the component

  • 'bottom': label appears below the component

  • 'left': label appears to the left of the component (default)

  • 'right': label appears to the right of the component

Example

Spinner1.labelVisible = true;
Spinner1.labelPosition = 'top';

Either syntax below can be used in component script:

labelPosition             // unqualified
Spinner1.labelPosition    // qualified

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