ADK_PosType - Position types
Position types are used for defining the parent which provides the offset for positioning subordinated dialogs.
Enumarators overview
- POS_Application
(2) - Position relative to application window
- POS_Parent
(3) - Position relative to parent window
- POS_Screen
(1) - Position relative to screen
- POS_undefined
(0) - Positioning type not defined
Enumerator details
-
POS_undefined - Positioning type not defined
When no positioning type has been defined, the system decides, which is the most appropriate. Since this may change with new GUI frame versions, it is suggested always to define a specific position settings.
Code: 0
to list -
POS_Screen - Position relative to screen
The dialog is positioned relative to the screen area. This is the setting suggested for application windows.
Code: 1
to list -
POS_Application - Position relative to application window
Subordinated dialogs are positioned relatively to the application window.
Code: 2
to list -
POS_Parent - Position relative to parent window
Subordinated dialogs are positioned relatively to the window that has been assigned as parent when opening the subordinated dialog. This is usually the window, from which the window action has been invoked.
Code: 3
to list