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

ReportDesignerModel.DataBindingMode Property

Specifies the binding mode used to provide dynamic contents to reports.

Namespace: DevExpress.XtraReports.Web.ReportDesigner

Assembly: DevExpress.XtraReports.v24.2.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

#Declaration

public DataBindingMode DataBindingMode { get; set; }

#Property Value

Type Description
DataBindingMode

A DataBindingMode enumeration value.

Available values:

Name Description
Bindings

The legacy data binding mode, in which providing any custom logic to the report requires report scripts.

Expressions

The default binding mode that allows you to provide expressions with restricted customization options (only the XRControl.BeforePrint event is available).

ExpressionsAdvanced

The binding mode that allows you to provide expressions in both the XRControl.BeforePrint and XRControl.PrintOnPage event handlers. See Use Variables for Event-Related Expressions.

See Also