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

PivotGridWebOptionsLayout.FullLayout Property

Returns a PivotGridWebOptionsLayout object whose settings indicate that the full layout of the control should be stored to, and restored from a storage (a stream or a string).

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v18.2.dll

Declaration

public static PivotGridWebOptionsLayout FullLayout { get; }

Property Value

Type Description
PivotGridWebOptionsLayout

A PivotGridWebOptionsLayout object whose settings indicate that the full layout of the control should be stored to/restored from a storage.

Property Paths

You can access this nested property as listed below:

Object Type Path to FullLayout
ASPxPivotGrid
.OptionsLayout.FullLayout
MVCxPivotGrid
.OptionsLayout.FullLayout

Remarks

The pivot grid allows you to select which options to save to (or restore from) a storage when saving (restoring) a layout. For this purpose, ASPxPivotGrid provides specific overloads of its LoadLayoutFrom… and SaveLayoutTo… methods that take a PivotGridWebOptionsLayout object as the optionsLayout parameter. This object determines which settings should be affected. To affect all layout settings when the layout is saved or restored, pass the FullLayout object as this parameter.

Note

Passing the FullLayout object as the optionsLayout parameter has the same effect as passing null (Nothing in Visual Basic).

To specify whether other settings (like appearance, data or client-side events) should be saved/restored, use the following properties.

OptionsLayoutGrid.StoreAllOptions

Gets or sets whether all the control’s settings (except for the appearance settings and format rules) are stored when the layout is saved to storage and restored when the layout is restored from storage.

OptionsLayoutGrid.StoreAppearance

Gets or sets whether the control’s appearance settings are also stored when the layout is saved to storage and restored when the layout is restored from storage.

PivotGridWebOptionsLayout.StoreClientSideEvents

Gets or sets whether the control client-side event handlers are stored when the layout is saved to a storage, and restored when the layout is restored from a storage.

OptionsLayoutGrid.StoreDataSettings

Gets or sets whether the control’s grouping, sorting, filtering settings and summaries are stored when the layout is saved to storage and restored when the layout is restored from storage.

OptionsLayoutGrid.StoreVisualOptions

Gets or sets whether the control’s visual options are stored when the layout is saved to storage and restored when the layout is restored from storage.

See Also