System.Types.TVertRectAlign
Delphi
TVertRectAlign = (Center, Top, Bottom);
C++
enum class DECLSPEC_DENUM TVertRectAlign : unsigned char { Center, Top, Bottom };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | System.Types.pas System.Types.hpp |
System.Types | System.Types |
Description
Specifies the vertical alignment of a rectangle.
Use TVertRectAlign to specify the vertical alignment of a rectangle within its parent. Set the AVertAlign parameter of the PlaceInto property to set the vertical alignment of the rectangle.
TVertRectAlign can have the following values:
| Value | Meaning |
|---|---|
|
|
The rectangle is moved to the center of the designated area. Default value. |
|
|
The rectangle is moved to the top of the designated area. |
|
|
The rectangle is moved to the bottom of the designated area. |