PivotCustomFieldValueCellsEventArgsBase<T1, T2>.FindAllCells(Boolean, Predicate<Object[]>) Method
Returns all cells whose values match the specified condition.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v24.1.Core.dll
NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
isColumn | Boolean | True to locate a column; false to locate a row. |
match | Predicate<Object[]> | A Predicate<Object> delegate that is the method that defines a set of criteria and determines whether the specified object meets those criteria. |
Returns
Type | Description |
---|---|
List<T2> | A list of cells whose values match the predicate. |
Remarks
The code sample is available at DevExpress Demo Center - WinForms Pivot Grid - Code Examples in the Hiding certain data cells module.
See Also