[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Alignment options for a control, within its Parent control.
Source position: controls.pp line 167
type TAlign = ( |
||
alNone, |
|
Control has fixed size and position |
alTop, |
|
Control stacked at top, full width. |
alBottom, |
|
Control stacked at bottom, full width. |
alLeft, |
|
Control stacked at left, full height. |
alRight, |
|
Control stacked at right, full height. |
alClient, |
|
Control fills remaining client area. |
alCustom |
|
Control has special alignment. |
); |
A control can be aligned as:
At most one control can have alClient alignment.
The order of multiple controls of the same (stackable) alignment is determined by their Left or Top coordinate.
The precedence of conflicting alignment requests (e.g. one at top, one at right) is resolved
lazarus-ccr.sourceforge.net |