Show TOC Start of Content Area

Object documentation ToggleButton API Locate the document in its SAP Library structure

Definition

·        checked
Specifies whether or not the ToggleButton is toggled.

·        checkedImageSource
Specifies the Web address of the icon that appears when the ToggleButton is toggled.

·        design
The
design property can be filled with the following values and is represented by the enumeration type WDToggleButtonDesign.

standard

Displays the ToggleButton with the default colors for the background and text. When values are assigned to the properties imageSource and checkedImageSource, the corresponding icon is displayed.

toggle

Displays the ToggleButton with a triangle symbol: This graphic is explained in the accompanying text
If the ToggleButton is toggled, the triangle points down: This graphic is explained in the accompanying text
If you select this value, no further icons should be assigned.

·        imageFirst
Defines the position of the icon in relation to the corresponding text.
If the value of this property is true, the icon is displayed to the left of the text.

·        imageSource
Specifies the Web address (URL) of the graphic to be displayed.

·        text
Specifies the text to be assigned to the AbstractToggleButton.

·        textDirection
Specifies the text direction and allows you to use the toggle element for texts in languages which require a specific text direction.
The textDirection property can be filled with the following values and is represented by the enumeration type WDTextDirection.

inherit

The text direction is inherited from the parent element. Therefore, the text direction is identical to the one of the parent element.

ltr

The text runs from left to right.

rtl

The text runs from right to left.

The default value for this property is inherit.

·        width
Specifies the width of the ToggleButtons.
You can specify the width in CSS units like em, ex, pixel, or percentage.

Overview of Inherited Properties

Name

Interface

Type

Initial Value

Bindable

Value Required

checked

IWDAbstractToggle

boolean

false

bindable_mandatory

No

checkedImageSource

IWDAbstractToggleButton

String

 

bindable

No

design

IWDAbstractToggleButton

WDToggleButtonDesign

standard

bindable

No

enabled

IWDUIElement

boolean

true

bindable

No

imageFirst

IWDAbstractToggleButton

boolean

true

bindable

No

imageSource

IWDAbstractToggleButton

String

 

bindable

No

text

IWDAbstractToggleButton

String

 

bindable

No

textDirection

IWDAbstractToggle

WDTextDirection

inherit

bindable

No

tooltip

IWDUIElement

String

 

bindable

No

visible

IWDUIElement

WDVisibility

visible

bindable

No

width

IWDAbstractToggleButton

String

 

bindable

No

Events

The onToggle event is executed when the ToggleButton is toggled. The parameter is the new status of the element.

Name

Class

Parameter

onToggle

IWDAbstractToggle

(boolean checked)

 

 

End of Content Area