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.RestoreFromStream(TStream) Method

Restores the grid layout from a stream.

#Declaration

Delphi
procedure RestoreFromStream(AStream: TStream);

#Parameters

Name Type
AStream TStream

#Remarks

You can use the RestoreFromStream method to restore grid layout from a stream.

The AStream parameter specifies a TStream descendant containing the grid layout.

To store the grid layout to a stream, you should use the StoreToStream method.

Alternatively, you can restore the grid layout from an INI file or from the Windows registry using the RestoreFromIniFile and RestoreFromRegistry methods respectively.

See Also