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

TdxCustomTileControl.OnGetStoredProperties Event

Enables you to customize a list of the tile control’s properties to be stored to external data stores.

Declaration

property OnGetStoredProperties: TcxGetStoredPropertiesEvent read; write;

Remarks

Whenever the store process is started by the StoreToIniFile, StoreToRegistry, or StoreToStream method call, a list of the properties to store is produced. By default, the list is empty. You can add custom property names to this list and handle the OnGetStoredPropertyValue and OnSetStoredPropertyValue events to provide property values to be saved to and restored from a data store. Make certain that items in the list uniquely identify the property names they correspond to.

The Sender parameter references the tile control.

The AProperties parameter provides access to the list of properties to be stored.

Note

To customize the manner in which tile group properties are persisted, handle a group’s OnGetStoredProperties, OnGetStoredPropertyValue, and OnSetStoredPropertyValue events. To customize the manner in which tile item properties are persisted, handle an item’s OnGetStoredProperties, OnGetStoredPropertyValue, and OnSetStoredPropertyValue events.

See Also