PivotCustomFieldValueCellsEventArgs.FindAllCells(Boolean, Predicate<Object[]>) Method
Returns a list of the headers of the column/row whose summary values match the specified condition.
Namespace: DevExpress.Web.ASPxPivotGrid
Assembly: DevExpress.Web.ASPxPivotGrid.v25.1.dll
NuGet Package: DevExpress.Web
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| isColumn | Boolean | true to locate a column; false to locate a row. |
| match | Predicate<Object[]> | A System.Predicate that specifies the condition used to locate the column/row. |
Returns
| Type | Description |
|---|---|
| IList<FieldValueCell> | A collection of the FieldValueCell objects, where each object is the header of the column/row whose summary values match the specified predicate; null if no columns/rows match the predicate. |
Remarks
To get a specific field value cell, call the FindCell method and specify a condition.
See Also