Entering content frame

Background documentation UIElementContainer Locate the document in its SAP Library structure

TheUIElementContainer UI element is the abstract base class of a container that can contain any number of UI elements known as children of the container. The size of a container can be determined from the properties width and height (see below).

The display of the container children within the container is specified by the Layout object.

In addition, the Web Dynpro LayoutData provides the UI element with layout data that belongs to the layout. Layout data defines the layout properties of the child element.

Runtime Class

CL_WD_UIELEMENT_CONTAINER

 

Properties in the View Designer

Name

Type

Initial Value

Bindable

ID

STRING

(automatic)

No

enabled

WDY_BOOLEAN

true

Yes

height

STRING

 

Yes

tooltip

Text

 

Yes

visible

WDUI_VISIBILITY

visible

Yes

width

STRING

 

Yes

 

Aggregations in the View Designer

Name

Cardinality

Type

Element

0..n

UIElement

 

Note

Further properties that can be inherited are defined in the associated higher-level class.  The associated UI elements are:

·         UIElement

·         ViewElement

Dynamic Programming

For dynamic programming the same properties, events, and aggregations are provided in the View Designer. Bear in mind the different spellings.

Dynamic Programming of Properties

View Designer Name

Runtime Name

Type

enabled

ENABLED

WDY_BOOLEAN

height

HEIGHT

STRING

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

visible

VISIBLE

WDUI_VISIBILITY

 visible: none

CL_WD_UIELEMENT=>E_VISIBLE-NONE

 visible: visible

CL_WD_UIELEMENT=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

 

Dynamic Programming of Aggregations

View Designer Name

Runtime Name

Cardinality

Element

CHILDREN

0..n

 

 

 

Leaving content frame