FMX.TextLayout.TTextLayout.AttributesCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AttributesCount: Integer read GetAttributesCount;

C++

__property int AttributesCount = {read=GetAttributesCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.TextLayout.pas
FMX.TextLayout.hpp
FMX.TextLayout TTextLayout

Description

Specifies the number of TTextAttributedRange objects within the Attributes list.

Use Attributes to get access to the items of the Attributes list.

To add new attributes to the list, use the AddAttribute method, and to delete attributes use DeleteAttribute or DeleteAttributeRange methods. To empty the attributes list, use the ClearAttributes method.

See Also