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

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.v19.2.Extensions.dll

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

// 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 ShowComplexProperties property.

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.

See Also