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

ReportDesignerFieldListOptionsBehavior Class

Allows you to specify in which order complex properties are displayed in the Report Designer‘s Field List.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

Declaration

public class ReportDesignerFieldListOptionsBehavior :
    Behavior<ReportDesigner>

Remarks

The ReportDesignerFieldListOptionsBehavior.ShowComplexProperties option 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 use this class.

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

Inheritance

Object
DispatcherObject
DependencyObject
Freezable
Animatable
DevExpress.Mvvm.UI.Interactivity.AttachableObjectBase
DevExpress.Mvvm.UI.Interactivity.Behavior
DevExpress.Mvvm.UI.Interactivity.Behavior<ReportDesigner>
ReportDesignerFieldListOptionsBehavior
See Also