Skip to main content
All docs
V25.1
  • DXObservableCollection<T>.FindIndex(Int32, Predicate<T>) Method

    Returns the first item index that matches search conditions. The search operation starts from the specified index.

    Namespace: DevExpress.Maui.Mvvm

    Assembly: DevExpress.Maui.Mvvm.dll

    NuGet Package: DevExpress.Maui.Mvvm

    Declaration

    public int FindIndex(
        int startIndex,
        Predicate<T> match
    )

    Parameters

    Name Type Description
    startIndex Int32

    The first item index found after the specified index.

    match Predicate<T>

    A delegate that defines search conditions.

    Returns

    Type Description
    Int32

    The first item index that matches search conditions.

    See Also