FMX.Objects.TLine.LineType
Delphi
property LineType: TLineType read FLineType write SetLineType;
C++
__property TLineType LineType = {read=FLineType, write=SetLineType, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | FMX.Objects.pas FMX.Objects.hpp |
FMX.Objects | TLine |
Description
Specifies how to place the line inside the shape rectangle.
The LineType value should be one of the constants defined in the TLineType type: Diagonal
, Top
, or Left
.
The default is Diagonal
.
The TLineType type defines the following constants:
Constant | Meaning |
---|---|
|
Draw the line as the diagonal of the shape rectangle. |
|
Draw the line as the top side (width) of the shape rectangle. |
|
Draw the line as the bottom side (width) of the shape rectangle. |
|
Draw the line as the left side (height) of the shape rectangle. |
|
Draw the line as the right side (height) of the shape rectangle. |