System.Types.THorzRectAlign
Delphi
THorzRectAlign = (Center, Left, Right);
C++
enum class DECLSPEC_DENUM THorzRectAlign : unsigned char { Center, Left, Right };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.Types.pas System.Types.hpp |
System.Types | System.Types |
Description
Specifies the horizontal alignment of a rectangle.
Use THorzRectAlign to specify the horizontal alignment of a rectangle within its parent. Set the AHorzAlign
parameter of PlaceInto property to set the horizontal alignment of the rectangle.
THorzRectAlign 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 left of the designated area. |
|
The rectangle is moved to the right of the designated area. |