PivotGridControl.CustomUnboundFieldData Event
In This Article
Enables providing data to unbound fields.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.2.dll
NuGet Package: DevExpress.Win.PivotGrid
#Declaration
public event CustomFieldDataEventHandler CustomUnboundFieldData
#Event Data
The CustomUnboundFieldData event's data class is CustomFieldDataEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Field |
Gets the unbound field currently being processed.
Inherited from Custom |
List |
Gets the current row index in the data source.
Inherited from Custom |
Value |
Gets or sets the currently processed value.
Inherited from Custom |
The event data class exposes the following methods:
Method | Description |
---|---|
Get |
Returns the value of the specified cell within the specified row in the control’s underlying data source.
Inherited from Custom |
Get |
Returns the value of the specified cell within the processed row in the control’s underlying data source.
Inherited from Custom |
#Remarks
This member is no longer supported in Optimized, OLAP and Server modes. Use ExpressionDataBinding or OLAPExpressionBinding for OLAP instead.
Refer to the following article for more information on how to build an expression with custom function: Calculated Fields.
See Also