DXObservableCollection<T>.FindIndex(Int32, Int32, Predicate<T>) Method
Returns the first item index that matches search conditions in the specified range.
Namespace: DevExpress.Maui.Mvvm
Assembly: DevExpress.Maui.Mvvm.dll
NuGet Package: DevExpress.Maui.Mvvm
Declaration
public int FindIndex(
int startIndex,
int count,
Predicate<T> match
)
Parameters
| Name | Type | Description |
|---|---|---|
| startIndex | Int32 | The first item index in the search range. |
| count | Int32 | The number of items in the search range. |
| match | Predicate<T> | A delegate that defines search conditions. |
Returns
| Type | Description |
|---|---|
| Int32 | The first item index that matches conditions in the specified range. |
See Also