ADK_VertPos - Vertical position mode
Subordinated GUI elements or labels might be arranged within the parent area or outside. Vertical position types allow defining where the GUI element appears relatively to its parent. The position type only considers the vertical dimension of its parent, i.e. positioning the element on top of its parent, it still may appear in the above, within or in the area below the parent control.
The option will be ignored for application windows and dialogs.
Default: HPS_InnerTop
Enumarators overview
- VPS_Center
(3) - Center vertically within the parent area
- VPS_InnerBottom
(4) - Inner bottom position
- VPS_InnerTop
(1) - Inner top position
- VPS_OuterBottom
(5) - Outer bottom position
- VPS_OuterTop
(2) - Outer top position
- VPS_undefined
(0) - Undefined position mode
Enumerator details
-
VPS_undefined - Undefined position mode
Usually, HPS_InnerTop is selected, when no valid position has been defined.
Code: 0
to list -
VPS_InnerTop - Inner top position
This type arranges the GUI element on top within the vertical range of its parent.
Code: 1
to list -
VPS_OuterTop - Outer top position
The position type arranges the element in the area above its parent.
Code: 2
to list -
VPS_Center - Center vertically within the parent area
Selecting the center option centers the GUI element vertically within the vertical range of its parent.
Code: 3
to list -
VPS_InnerBottom - Inner bottom position
This type arranges the GUI element on bottom within the vertical range of its parent.
Code: 4
to list -
VPS_OuterBottom - Outer bottom position
The position type arranges the element in the area below its parent.
Code: 5
to list