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