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

TcxCustomVerticalGrid.StoreToStream(TStream) Method

Stores the grid layout to a stream.

#Declaration

Delphi
procedure StoreToStream(AStream: TStream);

#Parameters

Name Type
AStream TStream

#Remarks

You can use the StoreToStream method to store the grid’s layout to a TStream descendant. The method stores the PaintStyle, RowHeaderWidth and ValueWidth property values and the row structure: row indexes and their parent indexes, row heights and their expanded/collapsed status.

The AStream parameter specifies the stream where the grid layout is to be stored.

To restore the grid layout from a stream, you should use the RestoreFromStream method.

Alternatively, you can store the grid layout to an INI file or to the Windows registry using the StoreToIniFile and StoreToRegistry methods respectively.

See Also