FMX.Objects3D.TText3D.WordWrap

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property WordWrap: Boolean read FWordWrap write SetWordWrap default True;

C++

__property bool WordWrap = {read=FWordWrap, write=SetWordWrap, default=1};

Properties

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

Description

Specifies whether the text inside the TText3D object wraps when it is longer than the width of the control.

Set WordWrap to True to allow the TText3D control to display multiple lines of text. When WordWrap is True, text that is too long for the TText3D object wraps at the right margin and continues in additional lines.

Set WordWrap to False for the text to span onto a single line of the TText3D. However, in this case, the text that is too long for TText3D appears truncated.

The default value for the WordWrap property is False.

See Also