GridControl.RestoreLayoutFromXml(String) Method
In This Article
Restores a grid’s layout from the specified XML string.
Namespace: DevExpress.Mobile.DataGrid
Assembly: DevExpress.Mobile.Grid.v18.2.dll
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
xml |
String | A string from which grid settings are read. |
#Remarks
Important
This documentation topic describes legacy technology. We no longer develop new functionality for the Grid
Use the RestoreLayoutFromXml method to load the previously saved grid layout to an XML sting with the GridControl.SaveLayoutToXml method.
#Example
The following sample code shows how to save the current layout of the grid to an XML string on a button click and restore it on another button click. The GridControl.SaveLayoutToXml and GridControl.RestoreLayoutFromXml
methods are used.
string customState = String.Empty;
void SaveButton_Click(object sender, EventArgs e) {
// Save the grid's layout.
customState = grid.SaveLayoutToXml();
}
void LoadButton_Click(object sender, EventArgs e) {
// Restore the previously saved layout.
grid.RestoreLayoutFromXml(customState);
}
See Also