"popupTextMode"

Allows to define the popup display options that will be used if the "scrollerType" is set to "Popup".

Synopsis

setValue( string shape, "popupTextMode", string mode );

getValue( string shape, "popupTextMode", string mode );

shape.popupTextMode( string mode);

Parameter

Parameter Description
shape Name of the object
mode

The display mode that shall be used.

Following options are available:
  • Normal => All tabs will be displayed normally.

  • HiddenTabsBold => All hidden tabs will be displayed in bold font.

  • ShownTabsBold => All visible tabs will be displayed in bold font.

Description

Allows to define how the list ob tabs inside the popup is displayed. Can only be used when "scrollerType" is set to "Popup".

Example

Following example defines that the hidden tabs are displayed in bold font, when opening the popup menu.

main()
{
  TAB1.popupTextMode("HiddenTabsBold");
}

Assignment

Tab