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

BuilderFactoryExtensions.ReportDesigner(BuilderFactory) Method

The BuilderFactory class’ extension method required to create a Report Designer Builder.

Namespace: DevExpress.AspNetCore

Assembly: DevExpress.AspNetCore.Reporting.v19.2.dll

NuGet Package: DevExpress.AspNetCore.Reporting

Declaration

public static ReportDesignerBuilder ReportDesigner(
    this BuilderFactory factory
)

Parameters

Name Type Description
factory BuilderFactory

The BuilderFactory instance that this method extends.

Returns

Type Description
ReportDesignerBuilder

The object required to build a Web Report Designer.

Remarks

Use this extension method to create a Report Designer Builder and generate an element for a Report Designer on a page. Specify an identifier for the element using the returned object’s Name(String) method.

@Html.DevExpress().ReportDesigner().Name("ReportDesigner").Height("1000px")
See Also