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

OptionsColumnLayout.StoreAllOptions Property

Gets or sets whether all the settings of a control’s columns/bands (except for the appearance settings) are stored when the layout is saved to storage and restored when the layout is restored from storage.

Namespace: DevExpress.Utils

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

[DefaultValue(false)]
public bool StoreAllOptions { get; set; }

Property Value

Type Default Description
Boolean **false**

true if all the settings of a control’s columns/bands are included in the layout when it’s saved to storage and these settings are restored when the layout is restored from storage; otherwise, false.

Property Paths

You can access this nested property as listed below:

Show 16 property paths
Library Object Type Path to StoreAllOptions
Cross-Platform Class Library OptionsLayoutGrid
.Columns .StoreAllOptions
PivotGridOptionsLayout
.Columns .StoreAllOptions
WinForms Controls ColumnView
.OptionsLayout .StoreAllOptions
ColumnView
.Columns .StoreAllOptions
TileView
.OptionsLayout .StoreAllOptions
TileView
.Columns .StoreAllOptions
TileViewOptionsLayout
.Columns .StoreAllOptions
WinExplorerView
.OptionsLayout .StoreAllOptions
WinExplorerView
.Columns .StoreAllOptions
WinExplorerViewOptionsLayout
.Columns .StoreAllOptions
PivotGridControl
.OptionsLayout .StoreAllOptions
PivotGridControl
.Columns .StoreAllOptions
PropertyGridControl
.OptionsLayout .StoreAllOptions
PropertyGridControl
.Columns .StoreAllOptions
VGridControl
.OptionsLayout .StoreAllOptions
VGridControl
.Columns .StoreAllOptions
VGridControlBase
.OptionsLayout .StoreAllOptions
VGridControlBase
.Columns .StoreAllOptions
VGridOptionsLayout
.Columns .StoreAllOptions
Reporting XRPivotGrid
.OptionsLayout .StoreAllOptions
XRPivotGrid
.Columns .StoreAllOptions
ASP.NET Web Forms Controls ASPxPivotGrid
.OptionsLayout .StoreAllOptions
ASPxPivotGrid
.FullLayout .StoreAllOptions
ASPxPivotGrid
.Columns .StoreAllOptions
PivotGridWebOptionsLayout
.FullLayout .StoreAllOptions
PivotGridWebOptionsLayout
.Columns .StoreAllOptions
ASP.NET MVC Extensions MVCxPivotGrid
.OptionsLayout .StoreAllOptions
MVCxPivotGrid
.FullLayout .StoreAllOptions
MVCxPivotGrid
.Columns .StoreAllOptions

Remarks

This option specifies if all the settings of a control’s columns and bands are included in the control’s layout when it’s saved to storage (a stream, xml file or the system registry). If the StoreAllOptions option is set to false, the settings that are included in the layout when it’s stored are dependent upon the options of the OptionsColumnLayout object (only those settings which have their corresponding Store… properties set to true are included).

If the layout is being restored from storage and the StoreAllOptions option is set to true the control will try to load the appropriate options from the storage. If these options cannot be found in the stored layout, the control’s corresponding options will be set to their default values.

See Also