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

    A control that displays the Snap data sources in a tree structure.

    Namespace: DevExpress.Snap.Extensions.UI

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

    NuGet Package: DevExpress.Win.Snap

    Declaration

    public class FieldListDockPanel :
        SnapDockPanelBase

    Remarks

    The FieldListDockPanel class instance is a Data Explorer visual element in a Snap application.

    It displays data source fields, calculated fields and parameters.

    You can change the order of data fields in the tree structure using the FieldListDockPanel.SortOrder and FieldListDockPanel.ShowComplexProperties settings.

    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";
    

    Inheritance

    Object
    MarshalByRefObject
    Component
    Control
    ScrollableControl
    ContainerControl
    ZIndexControl
    DockPanel
    DevExpress.Snap.Extensions.UI.SnapDockPanelBase
    FieldListDockPanel
    See Also