Skip to main content

PivotGroupFilterValuesCollection.FindAll(Predicate<PivotGroupFilterValue>) Method

Returns all group filter values that meet the specified condition.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v14.2.Core.dll

Declaration

public List<PivotGroupFilterValue> FindAll(
    Predicate<PivotGroupFilterValue> predicate
)
Public Function FindAll(
    predicate As Predicate(Of PivotGroupFilterValue)
) As List(Of PivotGroupFilterValue)

Parameters

Name Type Description
predicate Predicate<PivotGroupFilterValue>

A System.Predicate that specifies the condition used to select the required collection elements.

Returns

Type Description
List<PivotGroupFilterValue>

A list of PivotGroupFilterValue objects that represent the group filter values that meet the specified condition.

See Also