Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomGridView.OnGetStoredPropertyValue Event

In This Article

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

#Declaration

Delphi
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