XRPivotGridAppearances.RestoreLayoutFromXml(String) Method
Loads the appearance settings stored in the specified XML file.
Namespace: DevExpress.XtraReports.UI.PivotGrid
Assembly: DevExpress.XtraReports.v24.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
Parameters
Name | Type | Description |
---|---|---|
xmlFile | String | A String value, specifying the path to the XML file which contains the appearance settings to be loaded. If the specified file does not exist, an exception is raised. |
Remarks
Use the RestoreLayoutFromXml method to load the appearance settings previously saved to an XML file via the XRPivotGridAppearances.SaveLayoutToXml method.
Example
The following example shows how to read and write the appearance settings used to paint the XtraGrid’s elements to/from an XML file.
string fileName = "C:\\appearanceLayout.xml";
gridControl1.MainView.Appearance.SaveLayoutToXml(fileName);
// ...
gridControl1.MainView.Appearance.RestoreLayoutFromXml(fileName);
See Also