Skip to main content
All docs
V19.1

ExpressionBinding.PropertyName Property

Specifies the property name to which the expression binding is assigned.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

[DefaultValue("")]
public string PropertyName { get; set; }

Property Value

Type Default Description
String String.Empty

A String value, specifying the property name.

Remarks

When the UserDesignerOptions.DataBindingMode property is set to DataBindingMode.Expressions or DataBindingMode.ExpressionsAdvanced, you can assign a binding expression to a report control:

  • Use the ExpressionBinding.EventName property to specify the event handler in which the expression is evaluated.
  • Use the ExpressionBinding.PropertyName property to specify the property to which the binding expression is applied.
  • Use the ExpressionBinding.Expression to specify a binding expression for the specified property in the selected event handler.

See Data Binding Modes to learn more about using this feature.

See Also