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

TdxBarManager.SaveToStream(TStream) Method

Saves the bar manager’s settings to a stream.

#Declaration

Delphi
procedure SaveToStream(AStream: TStream);

#Parameters

Name Type
AStream TStream

#Remarks

Use the SaveToStream method to save the bar manager settings to a stream specified by the AStream parameter. If nil is passed for the parameter, the SaveToStream method does nothing.

Please refer to the description of the SaveToIniFile method for details on which bar manager’s settings are saved to a stream.

You can restore the bar manager’s settings from a stream using the LoadFromStream method. Also settings can be saved to and restored from an INI file or the registry. Please refer to the SaveToIniFile or SaveToRegistry and, LoadFromIniFile or LoadfromRegistry method pairs.

Note

the SaveToStream method writes information starting from the stream’s current position, which can be specified using the Position property.

See Also