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

TcxGridBand.OnGetStoredProperties Event

In This Article

Occurs when the list of the current band’s properties that will be stored in external storage is produced.

#Declaration

Delphi
property OnGetStoredProperties: TcxGridBandGetStoredPropertiesEvent read; write;

#Remarks

Handle the OnGetStoredProperties event to customize the list of the current band’s properties that will be stored in external storage such as a file, registry, stream, or custom storage as a part of the owner View. Whenever the store process is started, a list of the properties to be stored is produced. When this event is fired, the list already consists of the names of the band’s properties, which are stored by default.

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

The AProperties parameter specifies the list of properties to be stored.

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

See Also