FMX.Objects.TLineType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLineType = (Diagonal, Top, Left, Bottom, Right);

C++

enum class DECLSPEC_DENUM TLineType : unsigned char { Diagonal, Top, Left, Bottom, Right, ltDiagonal _DEPRECATED_ATTRIBUTE3("Use TLineType.Diagonal")  = 0, ltTop _DEPRECATED_ATTRIBUTE3("Use TLineType.Top")  = 1, ltLeft _DEPRECATED_ATTRIBUTE3("Use TLineType.Left")  = 2 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Objects.pas
FMX.Objects.hpp
FMX.Objects FMX.Objects

Description

Specifies how to place the line inside the local rectangle for defining the line length.

The TLineType type defines the following constants:

Constant Meaning

Diagonal

FMX Objects TLine LineType ltDiagonal.png Draw the line as the diagonal of the shape rectangle.

Top

FMX Objects TLine LineType ltTop.png Draw the line as the top side (width) of the shape rectangle.

Bottom

FMX Objects TLine LineType ltBottom (RS-95378).jpg Draw the line as the bottom side (width) of the shape rectangle.

Left

FMX Objects TLine LineType ltLeft.png Draw the line as the left side (height) of the shape rectangle.

Right

FMX Objects TLine LineType ltRight (RS-95378).jpg Draw the line as the right side (height) of the shape rectangle.

See Also