Skip to main content
A newer version of this page is available.

FieldListDockPanel Class

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

Namespace: DevExpress.Snap.Extensions.UI

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

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

// 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