Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxMapItemAttributes Class

Stores arbitrary data (also called attributes) associated with a map item.

#Declaration

Delphi
TdxMapItemAttributes = class(
    TObject
)

#Remarks

This class contains a TDictionary<string, Variant> generic collection of key-value pairs, each of which represents an attribute’s name and value. TdxMapItemAttributes class members allow you to do the following:

  • Manage the collection content (Add and Remove);

  • Obtain attribute names stored in the collection and determine if they include a specific name (GetNames and ContainsName).

  • Obtain individual attribute values by attribute names (Values).

A TdxMapItemAttributes object is referenced by a map item’s Attributes property.

#Inheritance

TObject
TdxMapItemAttributes
See Also