FMX.Types.TSide
Delphi
TSide = (Top, Left, Bottom, Right);
C++
enum class DECLSPEC_DENUM TSide : unsigned int { Top, Left, Bottom, Right };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Specifies the sides of a rectangle to be displayed.
TSide is used to draw the sides of a customized rectangle.
Use TSides to select a set of TSide values. To select all the sides, use AllSides.
TSide can have the following values:
Value | Meaning |
---|---|
|
The upper side. |
|
The left side. |
|
The lower side. |
|
The right side. |