"buttonSymbols"
Changes the button symbols of the spin-button symbols.
Synopsis
setValue( string shape, "buttonSymbols", string
symbol);
getValue( string shape, "buttonSymbols", string
symbol);
shape.buttonSymbols( string symbol);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
symbol |
Name of the button symbol. Possible options are: "UpDownArrows" = arrow button (default) "PlusMinus" = +/- button "NoButtons" = no button symbol |
Description
This attribute specifies which button symbol shall be displayed for a spin button.
Example
The following example specifies a +/- button for the spin button.
Under Windows the +/- signs can only be displayed when using the Windows schema "classical".
main()
{
this.buttonSymbol("PlusMinus");
}
main()
{
setValue("", "buttonSymbol","PlusMinus");
}
Assignment
Spin button