Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V21.2
  • FieldListDockPanel.ShowComplexProperties Property

    Gets or sets the order in which complex properties are shown in the Field List.

    Namespace: DevExpress.Snap.Extensions.UI

    Assembly: DevExpress.Snap.v21.2.Extensions.dll

    NuGet Package: DevExpress.Win.Snap

    Declaration

    [DefaultValue(ShowComplexProperties.First)]
    public ShowComplexProperties ShowComplexProperties { get; set; }

    Property Value

    Type Default Description
    ShowComplexProperties First

    One of the ShowComplexProperties enumeration values indicating the complex properties’ order.

    Available values:

    Name Description
    Default

    The default order of showing complex properties in the Field List is preserved.

    First

    The complex properties are shown at the top of the Field List.

    Last

    The complex properties are shown at the bottom of the Field List.

    Example

    View Example

    // Retain the original field order in the tree.
    fieldListDockPanel1.SortOrder = SortOrder.None;
    // Display nested fields at the bottom.
    fieldListDockPanel1.ShowComplexProperties = DevExpress.XtraReports.Design.ShowComplexProperties.Last;
    // Specify the Data Explorer window caption.
    fieldListDockPanel1.Text = "My Data";
    
    See Also