System.Classes.TVerticalAlignment
Delphi
TVerticalAlignment = (taAlignTop, taAlignBottom, taVerticalCenter);
C++
enum DECLSPEC_DENUM TVerticalAlignment : unsigned char { taAlignTop, taAlignBottom, taVerticalCenter };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.Classes.pas System.Classes.hpp |
System.Classes | System.Classes |
Description
TVerticalAlignment specifies how text is vertically aligned within a control.
The following are possible values of TVerticalAlignment:
Value | Meaning |
---|---|
taAlignTop |
Text is aligned to the upper edge of the control. |
taAlignBottom |
Text is aligned to the bottom edge of the control. |
taVerticalCenter |
Text is vertically centered in the control. |