Skip to main content
A newer version of this page is available. .

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.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public IList<FieldValueCell> FindAllCells(
    bool isColumn,
    Predicate<object[]> match
)

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