Skip to main content
A newer version of this page is available. .

TreeMapItem.Tag Property

Gets or sets the object containing data related to a tree map item.

Namespace: DevExpress.XtraTreeMap

Assembly: DevExpress.XtraTreeMap.v20.2.dll

NuGet Package: DevExpress.TreeMap

Declaration

[DefaultValue(null)]
[XtraSerializableProperty]
public object Tag { get; set; }

Property Value

Type Default Description
Object *null*

A Object that contains data about the treemap item.

Remarks

Any type derived from the Object class can be assigned to this property. Use it to store data associated with a tree map item.

Note

If a tree map is bound to data, the Tag property is automatically assigned to the underlying object used to create this tree map item.

See Also