ASPxPivotGrid.FieldUnboundExpressionChanged Event
In This Article
Occurs after an unbound field expression has been changed.
Namespace: DevExpress.Web.ASPxPivotGrid
Assembly: DevExpress.Web.ASPxPivotGrid.v24.2.dll
NuGet Package: DevExpress.Web
#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 Pivot |
#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