TInspectorItem.Data
TInspectorItem
property Data: TObject;
Unit
TeeInspector
Description
Custom data object for this item.
Depending on the Style property, the Data property must hold a reference to the appropiate object kind.
For example:
var Item : TInspectorItem;
Item:=TeeInspector1.Items.Add(iiFont,'Font',Button1.Font);
// Item.Data is now equal to Button1.Font