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

ExpressionBinding.EventName Property

Specifies the name of the event in which the expression binding should be evaluated.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A String value, specifying the event 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