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

ReportDesignerFieldListOptionsBehavior.ShowComplexProperties Property

Specifies the order in which complex properties are shown in the Field List.

Namespace: DevExpress.Xpf.Reports.UserDesigner

Assembly: DevExpress.Xpf.ReportDesigner.v18.2.dll

Declaration

public ShowComplexProperties ShowComplexProperties { get; set; }

Property Value

Type Description
ShowComplexProperties

A ShowComplexProperties enumeration value.

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.

Remarks

The ShowComplexProperties property allows you to specify whether complex properties should be displayed at the top or bottom of the Field List or the default property order should be preserved.

You can also use the ReportDesignerFieldListOptionsBehavior.PropertiesSortOrder setting to define the complex properties’ sort order.

The following code demonstrates how to set these properties.

<Window  
   xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner"
   xmlns:dxmvvm="http://schemas.devexpress.com/winfx/2008/xaml/mvvm"
   ...

   <dxrud:ReportDesigner x:Name="reportDesigner">
       <dxmvvm:Interaction.Behaviors>
           <dxrud:ReportDesignerFieldListOptionsBehavior ShowComplexProperties="Default" PropertiesSortOrder="None" />
       </dxmvvm:Interaction.Behaviors>
   </dxrud:ReportDesigner>
</Window>
See Also