labelPosition

Specifies the position of the label relative to the component (Combo Box component only). See Radio Button/Check Box/Combo Box 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

ComboBox1.labelVisible = true;
ComboBox1.labelPosition = 'TOP';

Either syntax below can be used in component script:

labelPosition              // unqualified
ComboBox1.labelPosition    // qualified

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