FMX.Types.TCorner
Delphi
TCorner = (TopLeft, TopRight, BottomLeft, BottomRight);
C++
enum class DECLSPEC_DENUM TCorner : unsigned int { TopLeft, TopRight, BottomLeft, BottomRight };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
TCorner values identify the corners of a rectangle.
A TCorner value is used to specify the corner to be customized.
TCorner defines the following values:
Value | Meaning |
---|---|
|
Identifies the upper-left corner of the rectangle. |
|
Identifies the upper-right corner. |
|
Identifies the lower-left corner. |
|
Identifies the lower-right corner. |
Use TCorners values to select a set of corners in a rectangle.
Use AllCorners to select all four corners.