FMX.Objects3D.TText3D.VertTextAlign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property VertTextAlign: TTextAlign read FVertTextAlign write SetVertTextAlign default TTextAlign.Center;

C++

__property Fmx::Types::TTextAlign VertTextAlign = {read=FVertTextAlign, write=SetVertTextAlign, 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 vertical alignment.

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

  • Center (default)--aligns the text on a vertical axis, at the middle of the TText3D object.
  • Leading--aligns the text on a vertical axis, at the topmost position inside the TText3D object.
  • Trailing--aligns the text on a vertical axis, at the bottommost position inside the TText3D object.

See Also