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

ASPxPivotGrid.FieldUnboundExpressionChanged Event

Occurs after an unbound field expression has been changed.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v18.2.dll

Declaration

public event PivotFieldEventHandler FieldUnboundExpressionChanged

Event Data

The FieldUnboundExpressionChanged event's data class is PivotFieldEventArgs. The following properties provide information specific to this event:

Property Description
Field Gets the field being processed. Inherited from PivotFieldEventArgsBase<T>.

Remarks

Handle the FieldUnboundExpressionChanged event to respond to changing unbound expressions.

To identify an unbound field whose expression has been changed, use the event parameter PivotFieldEventArgsBase<T>.Field property. To obtain a new unbound expression, use the PivotGridFieldBase.UnboundExpression field property.

See Also