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

ReportDesignerModel Class

A model that contains information about a report. The Web Report Designer is bound to this model.

Namespace: DevExpress.XtraReports.Web.ReportDesigner

Assembly: DevExpress.XtraReports.v19.1.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

Declaration

public class ReportDesignerModel

Remarks

To generate the ReportDesignerModel object and assign values to the object properties, use the ReportDesignerExtension.GetModel method. After that, the MVCxReportDesigner can be bound to a ReportDesignerModel via the ReportDesignerExtension.Bind method in the web application’s View.

The following code demonstrates how to generate this model and bind the MVCxReportDesigner to it in an ASP.NET MVC web application.

Controller code:

using DevExpress.Web.Mvc;
using DevExpress.XtraReports.Native;
using DevExpress.XtraReports.UI;
//...

public class DesignerController : Controller {
    //...
    public ActionResult Designer() {
      var reportDesignerModel = ReportDesignerExtension.GetModel(new MyReport());
      return View(reportDesignerModel);
    }
}

View code:

@Html.DevExpress().ReportDesigner(settings => {
  settings.Name = "designer";
}).Bind(Model)

Inheritance

Object
ReportDesignerModel
See Also