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

ReportDesigner.View Property

Gets or sets the Report Designer‘s View. This is a dependency property.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

NuGet Package: DevExpress.Wpf.Reporting

Declaration

public ReportDesignerViewBase View { get; set; }

Property Value

Type Description
ReportDesignerViewBase

A ReportDesignerViewBase descendant that specifies the Report Designer View.

Remarks

The End-User Report Designer provides two types of Views that deliver the same functionality using different user interfaces.

You can specify the Report Designer’s View in XAML as demonstrated in the sample below.

<dxrud:ReportDesigner x:Name="reportDesigner">
    <dxrud: ReportDesignerClassicView />
</dxrud:ReportDesigner>

For more information, refer to Specifying the Report Designer View.

See Also