ASPxPivotGrid.FieldUnboundExpressionChanged Event
Occurs after an unbound field expression has been changed.
Namespace: DevExpress.Web.ASPxPivotGrid
Assembly: DevExpress.Web.ASPxPivotGrid.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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