FieldListOptions.ShowComplexProperties Property
Specifies the order to show complex properties in the Field List.
Namespace: DevExpress.Xpf.Reports.UserDesigner
Assembly: DevExpress.Xpf.ReportDesigner.v24.2.dll
NuGet Package: DevExpress.Wpf.Reporting
Declaration
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. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to ShowComplexProperties |
---|---|
ReportDesigner |
|
Remarks
The ShowComplexProperties property defines how to display complex properties in the Field List:
- show at the top;
- show at the bottom;
- preserve the default order that comes from a data source.
The following code demonstrates how to specify this property:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner"
... >
<dxrud:ReportDesigner Name="designer">
<dxrud:ReportDesigner.FieldListOptions>
<dxrud:FieldListOptions ShowComplexProperties="Default"/>
</dxrud:ReportDesigner.FieldListOptions>
</dxrud:ReportDesigner>
</Window>
See Also