FMX.Objects3D.TText3D.HorzTextAlign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HorzTextAlign: TTextAlign read FHorzTextAlign write SetHorzTextAlign default TTextAlign.Center;

C++

__property Fmx::Types::TTextAlign HorzTextAlign = {read=FHorzTextAlign, write=SetHorzTextAlign, default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.Objects3D.pas
FMX.Objects3D.hpp
FMX.Objects3D TText3D

Description

Specifies how the text will be displayed in terms of horizontal alignment.

The HorzTextAlign property specifies how the TText3D object will display the text in terms of horizontal alignment. HorzTextAlign can have one of the following values:

  • Center (default)--aligns the text on a horizontal axis, at the middle of the TText3D object.
  • Leading--aligns the text on a horizontal axis, at the leftmost position inside the TText3D object.
  • Trailing--aligns the text on a horizontal axis, at the rightmost position inside the TText3D object.

See Also