DXObservableCollection<T>.FindIndex(Int32, Int32, Predicate<T>) Method
In This Article
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
C#
public int FindIndex(
int startIndex,
int count,
Predicate<T> match
)
#Parameters
Name | Type | Description |
---|---|---|
start |
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