ADK_HoriPos - Horizontal position mode
Subordinated GUI elements or labels might be positioned within the parent area or outside. Horizontal position types allow defining where the GUI element appears relatively to its parent. The position type only considers the horizontal dimension of its parent, i.e. positioning the element on top of its parent, it still may appear in the left, within or in area right of the parent control.
The option will be ignored for application windows and dialogs.
Default: HPS_InnerLeft
Enumarators overview
- HPS_Center
(3) - Center within the parent area
- HPS_InnerLeft
(1) - Inner left position
- HPS_InnerRight
(5) - Inner right position
- HPS_OuterLeft
(2) - Outer left position
- HPS_OuterRight
(4) - Outer right position
- HPS_undefined
(0) - Undefined position mode
Enumerator details
-
HPS_undefined - Undefined position mode
Usually, HPS_InnerLeft is selected, when no valid position has been defined.
Code: 0
to list -
HPS_InnerLeft - Inner left position
This type arranges the GUI element left within the horizontal range of its parent.
Code: 1
to list -
HPS_OuterLeft - Outer left position
The position type arranges the element in the area left of its parent.
Code: 2
to list -
HPS_Center - Center within the parent area
Selecting the center option centers the GUI element within the horizontal range of its parent.
Code: 3
to list -
HPS_OuterRight - Outer right position
The position type arranges the element in the area right of its parent.
Code: 4
to list -
HPS_InnerRight - Inner right position
This type arranges the GUI element right within the horizontal range of its parent.
Code: 5
to list