Entering content frame

Background documentation AbstractDropDown Locate the document in its SAP Library structure

 

AbstractDropDown represents the abstract base class of all dropdown list boxes (DropDownByIndex and DropDownByKey).

 

Runtime Class

CL_WD_ABSTRACT_DROPDOWN

 

Properties in the View Designer

Name

Type

Initial Value

Bindable

ID

STRING

(automatic)

no

enabled

WDY_BOOLEAN

true

yes

labelFor

STRING

 

no

readOnly

WDY_BOOLEAN

false

yes

state

WDUI_STATE

normal

yes

textDirection

WDUI_TEXT_DIRECTION

inherit

yes

tooltip

Text

 

yes

visible

WDUI_VISIBILITY

visible

yes

width

STRING

 

yes

Note

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

            UIElement

    ViewElement

Dynamic Programming

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

Dynamic Programming of Properties

View Designer Name

Runtime Name

Type

enabled

ENABLED

WDY_BOOLEAN

labelFor

LABEL_FOR

STRING

readOnly

READ_ONLY

WDY_BOOLEAN

state

STATE

WDUI_STATE

 state: normal

CL_WD_ABSTRACT_DROPDOWN=>E_STATE-NORMAL

 state: required

CL_WD_ABSTRACT_DROPDOWN=>E_STATE-REQUIRED

textDirection

TEXT_DIRECTION

WDUI_TEXT_DIRECTION

 textDirection: inherit

CL_WD_ABSTRACT_DROPDOWN=>E_TEXT_DIRECTION-INHERIT

 textDirection: ltr

CL_WD_ABSTRACT_DROPDOWN=>E_TEXT_DIRECTION-LTR

 textDirection: rtl

CL_WD_ABSTRACT_DROPDOWN=>E_TEXT_DIRECTION-RTL

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

visible

VISIBLE

WDUI_VISIBILITY

 visible: none

CL_WD_ABSTRACT_DROPDOWN=>E_VISIBLE-NONE

 visible: visible

CL_WD_ABSTRACT_DROPDOWN=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

 

 

 

Leaving content frame