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

ReportDesignerModel.DataBindingMode Property

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

Namespace: DevExpress.XtraReports.Web.ReportDesigner

Assembly: DevExpress.XtraReports.v19.1.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. For more information, review the Expression Constants, Operators, and Functions help topic.

See Also