Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BuilderFactoryExtensions.ReportDesigner(BuilderFactory, String) Method

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

Namespace: DevExpress.AspNetCore

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

NuGet Package: DevExpress.AspNetCore.Reporting

#Declaration

public static ReportDesignerBuilder ReportDesigner(
    this BuilderFactory factory,
    string name
)

#Parameters

Name Type Description
factory BuilderFactory

The BuilderFactory instance that this method extends.

name String

An identifier for the element representing a Report Designer on the page.

#Returns

Type Description
ReportDesignerBuilder

The object required to build a Report Designer.

#Remarks

Use this extension method to create a Report Designer Builder and generate an element for a Report Designer on a page. The element’s identifier is specified using the value passed as the name parameter.

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