Skip to main content

TcxGridBand.OnGetStoredPropertyValue Event

Occurs when the values of the current band’s properties are stored in external storage.

Declaration

property OnGetStoredPropertyValue: TcxGridBandGetStoredPropertyValueEvent read; write;

Remarks

Whenever you have customized the list of properties to be stored in external storage in the OnGetStoredProperties event you should handle the OnGetStoredPropertyValue event to specify their values. These values will be saved in the resulting output.

The Sender parameter specifies the band object whose properties will be stored.

The AName parameter denotes the name of the current band’s property in the resulting output.

In order to store a specific value for the AName property, set its value to the AValue parameter.

As for the guiding principles on how to use this event, see the example on how to handle the TcxCustomGridView.OnGetStoredPropertyValue event.

See Also