FMX.Graphics.TTextSettings.IsAdjustChanged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsAdjustChanged: boolean read FIsAdjustChanged write FIsAdjustChanged;

C++

__property bool IsAdjustChanged = {read=FIsAdjustChanged, write=FIsAdjustChanged, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics TTextSettings

Description

TTextSettings sets IsAdjustChanged, when any styled text representation property influencing the layout of the current TTextSettings object is modified.

TTextSettings sets IsAdjustChanged = True when any of the styled text representation properties that can modify geometry parameters of a text is changed. These properties are: Font, HorzAlign, VertAlign, Trimming or WordWrap.

Unlike IsChanged, TTextSettings does not set IsAdjustChanged when FontColor is changed.

In your OnChanged event handler, you can check values of IsAdjustChanged and IsChanged.

See Also