wpf-devexpress-dot-xpf-dot-core-dot-serialization-6e44915f.md
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
public enum StoreLayoutMode
Public Enum StoreLayoutMode
| 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