Skip to main content
All docs
V25.1
  • 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.1.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