Skip to main content
All docs
V25.2
  • ShapeCollection.FindAll<TResult>(Func<TResult, Boolean>) Method

    Finds all shapes that match the specified condition.

    Namespace: DevExpress.Docs.Presentation

    Assembly: DevExpress.Docs.Presentation.v25.2.dll

    NuGet Package: DevExpress.Docs.Presentation

    Declaration

    public IEnumerable<TResult> FindAll<TResult>(
        Func<TResult, bool> predicate
    )

    Parameters

    Name Type Description
    predicate Func<TResult, Boolean>

    A function that defines the condition of the shapes to find.

    Type Parameters

    Name Description
    TResult

    The type of the shapes to find.

    Returns

    Type Description
    IEnumerable<TResult>

    A collection of shapes that match the specified condition.

    See Also