Skip to main content
A newer version of this page is available. .
Bar

BarManager.SaveToXml(String) Method

Saves the BarManager component state to an xml file.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

public virtual void SaveToXml(
    string xmlFile
)

Parameters

Name Type Description
xmlFile String

An xml file to which the BarManager component’s state is saved.

Remarks

This method is obsolete. Use the BarManager.SaveLayoutToXml method instead.

Example

The following code can be used to read and write a BarManager’s state from/to an XML file.

string xmlFile = "c:\\XtraBars\\States\\MainState.xml";
barManager1.SaveLayoutToXml(xmlFile);

//...

barManager1.RestoreLayoutFromXml(xmlFile);
See Also