TcxCustomVerticalGrid.RestoreFromStream(TStream) Method
Restores the grid layout from a stream.
Declaration
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