Skip to main content

TcxCustomGridView.OnGetStoredPropertyValue Event

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

Declaration

property OnGetStoredPropertyValue: TcxGridViewGetStoredPropertyValueEvent read; write;

Remarks

Whenever you have customized the list of the 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 grid View object whose properties will be stored.

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

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

See the example on how to use this event.

See Also