Skip to main content
All docs
V23.2

StoreLayoutMode Enum

Lists the values that specify properties that the DXSerializer class should save/restore.

Namespace: DevExpress.Xpf.Core.Serialization

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public enum StoreLayoutMode

Members

Name Description
All

Serialization: All properties that you mark with the XtraSerializableProperty attribute and have their local value specified. These generally include the visual, data-aware, behavior, and customization options.

Deserialization: All properties marked with the XtraSerializableProperty attribute are restored.

UI

Serialization: only those UI properties that you mark with the XtraSerializableProperty, GridUIProperty, and PivotStoreAlwaysProperty (the visibility state, position, and size of columns, sort and group settings, summary information).

Deserialization: only properties related to the UI. To serialize additional properties marked with the XtraSerializableProperty attribute, handle the DXSerializer.AllowPropertyEvent.

None

Serialization: Only properties that you mark with a special attribute (GridControl: GridStoreAlwaysProperty; PivotGridControl: PivotStoreAlwaysProperty).

Deserizalition: All properties will be ignored during deserialization.

See Also