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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FieldListDockPanel class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

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