Show TOC Start of Content Area

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

The TransparentContainer (IWDTransparentContainer) is a UI container without any visual representation. A TransparentContainer UI element is transparent and can be filled with an any quantity of UI elements (children). In addition, the TransparentContainer UI element allows you to arrange its inserted UI elements through the specified layout.

Description of UI Element Properties

     accessibilityDescription

When accessibility is activated, the assigned text is added to the tool tip. This description provides semantic details of the UI element and is only read by the screen reader if the user focuses the complete Ul element.

     defaultButtonId

Specifies the ID of the assigned default button. To maintain a default button the isLayoutContainerproperty has to be set to false.

     enabled

The enabled property has no effect on the UI element children you inserted into the UI element container. If, for example, you set the enabled property to false in the group UI element, an input field inserted in it is not automatically deactivated. If the UI element children in this group UI element are also to be deactivated, you must set the relevant property for each UI element separately.

     isLayoutContainer

Specifies whether the TransparentContainer can be used as a layout container.

     scrollingMode

Specifies how the scroll bar appears within the TransparentContainer.
The
scrollingMode property can take the following values and is represented by enumeration type WDScrollingMode.

auto

The scroll bar within the container is activated automatically.

both

A vertical and horizontal scroll bar are activated.

none

Scrolling within the text context is not possible.

     width

Determines the width of the TransparentContainer. You can specify this in CSS sizes, such as em, ex, pixels or percentage values.

Properties Overview

Name

Interface

Type

Initial Value

Bindable

Value Required

accessibilityDescription

IWDScrollContainer

String

 

bindable

No

defaultButtonId

IWDScrollContainer

String

 

bindable

No

enabled

IWDUIElement

boolean

true

bindable

No

height

IWDUIElementContainer

String

 

bindable

No

isLayoutContainer

IWDTransparentContainer

boolean

true

not_bindable

No

scrollingMode

IWDScrollContainer

WDScrollingMode

none

bindable

No

tooltip

IWDUIElement

String

 

bindable

No

visible

IWDUIElement

WDVisibility

visible

bindable

No

width

IWDUIElementContainer

String

 

bindable

No

 

End of Content Area