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

TcxCustomScheduler.StoreToStream(TStream,Boolean) Method

Saves the scheduler control’s layout scheme in the AStream stream.

#Declaration

Delphi
procedure StoreToStream(AStream: TStream; AStoreResources: Boolean = True);

#Parameters

Name Type
AStream TStream
AStoreResources Boolean

#Remarks

Use the StoreToStream method to store the scheduler control’s layout. The StoreToStream method provides flexibility in that a wide range of storage devices can be used as the storage via an AStream instance of the TStream class.

The AStoreResources parameter specifies whether to store the resources’ layout. Set the AStoreResources parameter to True to persist the resources’ layout.

To restore the layout saved in the stream use the RestoreFromStream method.

Note

this method saves the layout set by the user. If layout changes (that can also be performed by end-users through the user interface) are made programmatically they are also stored in the AStream stream.

See Also