aspnet-devexpress-dot-web-dot-aspxpivotgrid-dot-aspxpivotgrid-45142edf.md
Enables you to save and restore the previously saved layout of the pivot grid.
Namespace : DevExpress.Web.ASPxPivotGrid
Assembly : DevExpress.Web.ASPxPivotGrid.v25.2.dll
NuGet Package : DevExpress.Web
public event ASPxClientLayoutHandler ClientLayout
Public Event ClientLayout As ASPxClientLayoutHandler
The ClientLayout event's data class is ASPxClientLayoutArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| LayoutData | Gets or sets the layout data. |
| LayoutMode | Indicates whether a control’s layout should be saved or restored. |
Handle the ClientLayout event to save and restore the pivot grid’s layout from a data store.
Save Layout
Restore Layout
You can also save and restore the pivot grid’s layout via the following methods:
|
ASPxPivotGrid.SaveLayoutToStream
|
Saves the pivot grid layout to the specified stream, using the specified settings.
| |
ASPxPivotGrid.SaveLayoutToString
|
Saves the pivot grid layout to the specified string.
| |
ASPxPivotGrid.LoadLayoutFromStream
|
Restores the pivot grid layout from the specified stream, using the specified settings.
| |
ASPxPivotGrid.LoadLayoutFromString
|
Restores the pivot grid layout from the specified string, using the specified settings.
|
See Also