ASPxClientLayoutArgs.LayoutData Property
Gets or sets the layout data.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
String | A String value that contains the layout data. |
Remarks
Use the LayoutData property to save and restore the layout of a web control.
Save Layout
- The ASPxClientLayoutArgs.LayoutMode property returns ClientLayoutMode.Saving. The LayoutData property contains the web control’s current layout that should be saved, for instance, to a database.
Restore Layout
- The ASPxClientLayoutArgs.LayoutMode property returns ClientLayoutMode.Loading. Read the web control’s layout data from a data store and assign it to the LayoutData property.
See Also