Start of Content Area

Background documentation AbstractActiveComponent  Locate the document in its SAP Library structure

AbstractActiveComponent is the abstract base UI element of the OfficeControl, InteractiveForm, Gantt, and Network active UI elements. From a technical perspective, these are ActiveX controls and therefore allow greater interaction by the user. In addition, AbstractActiveComponent supports the active UI elements with internal services. All properties are passed to the InteractiveForm, OfficeControl, Gantt, and Network UI elements. For example, this allows you to define the height and width of an interactive form.

 

Runtime Class

CL_WD_ABSTR_ACT_COMP

 

Properties in the View Designer

Name

Type

Initial Value

Bindable

ID

STRING

(automatic)

No

additionalArchives

STRING

 

No

archive

STRING

 

No

classId

STRING

 

No

codeBase

STRING

 

No

contextMenuBehaviour

WDUI_CONTEXT_MENU_BEHAVIOUR

inherit

No

contextMenuId

WDY_MD_UI_ELEMENT_REFERENCE

 

No

enabled

WDY_BOOLEAN

true

Yes

height

STRING

300px

Yes

tooltip

Translatable text

 

Yes

type

STRING

 

No

visible

WDUI_VISIBILITY

visible

Yes

width

STRING

300px

Yes

Note

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

        UIElement

        ContextMenuProvider

        ViewElement

Dynamic Programming

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

Dynamic Programming of Properties

View Designer Name

Runtime Name

Type

additionalArchives

ADDITIONAL_ARCHIVES

STRING

archive

ARCHIVE

STRING

classId

CLASS_ID

STRING

codeBase

CODE_BASE

STRING

contextMenuBehaviour

CONTEXT_MENU_BEHAVIOUR

WDUI_CONTEXT_MENU_BEHAVIOUR

 contextMenuBehaviour: inherit

CL_WD_ABSTR_ACT_COMP=>E_CONTEXT_MENU_BEHAVIOUR-INHERIT

 contextMenuBehaviour: provide

CL_WD_ABSTR_ACT_COMP=>E_CONTEXT_MENU_BEHAVIOUR-PROVIDE

 contextMenuBehaviour: suppress

CL_WD_ABSTR_ACT_COMP=>E_CONTEXT_MENU_BEHAVIOUR-SUPPRESS

contextMenuId

CONTEXT_MENU_ID

WDY_MD_UI_ELEMENT_REFERENCE

enabled

ENABLED

WDY_BOOLEAN

height

HEIGHT

STRING

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

type

TYPE

STRING

visible

VISIBLE

WDUI_VISIBILITY

visible: none

CL_WD_ABSTR_ACT_COMP=>E_VISIBLE-NONE

visible: visible

CL_WD_ABSTR_ACT_COMP=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

 

 

End of Content Area