Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

StoreLayoutMode Enum

In This Article

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

Namespace: DevExpress.Xpf.Core.Serialization

Assembly: DevExpress.Xpf.Core.v24.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