Back to Devexpress

StoreLayoutMode Enum

wpf-devexpress-dot-xpf-dot-core-dot-serialization-6e44915f.md

latest1.9 KB
Original Source

StoreLayoutMode Enum

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

Namespace : DevExpress.Xpf.Core.Serialization

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

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public enum StoreLayoutMode
vb
Public Enum StoreLayoutMode

Members

NameDescription
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

DevExpress.Xpf.Core.Serialization Namespace