FMX.Objects.TLineLocation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLineLocation = (Boundary, Inner, InnerWithin);

C++

enum class DECLSPEC_DENUM TLineLocation : unsigned char { Boundary, Inner, InnerWithin };

Properties

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

Description

Specifies the way a line is drawn.

The available values are:

  • Boundary: If you increase the thickness of a Boundary line, the line grows inside and outside of the control symmetrically. The central point of the growth depends on the TLineType. If TLineType is Diagonal, the line goes from the top-left corner to the bottom-right corner. If the thickness of the line is greater than the size of the control, a Boundary line may grow beyond the control.
  • Inner: If you increase the thickness of an Inner line, the line grows inside the control. If the thickness of the line is greater than the size of the control, an Inner line may grow beyond the control.
  • InnerWithin: If you increase the thickness of an InnerWithin line, the line grows inside the control. The thickness of an InnerWithin line is limited by the size of the control (it never grows beyond the control).

See Also