FMX.Objects.TLine.LineLocation

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property LineLocation: TLineLocation read FLineLocation write SetLineLocation default TLineLocation.Boundary;

C++

__property TLineLocation LineLocation = {read=FLineLocation, write=SetLineLocation, default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.Objects.pas
FMX.Objects.hpp
FMX.Objects TLine

Description

Specifes the way a line is drawn.

The available values are:

  • Boundary: Default. 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