DXObservableCollection<T>.FindIndex(Predicate<T>) Method
In This Article
Returns the first item index that matches search conditions.
Namespace: DevExpress.Maui.Mvvm
Assembly: DevExpress.Maui.Mvvm.dll
NuGet Package: DevExpress.Maui.Mvvm
#Declaration
C#
public int FindIndex(
Predicate<T> match
)
#Parameters
Name | Type | Description |
---|---|---|
match | Predicate<T> | A delegate that defines search conditions. |
#Returns
Type | Description |
---|---|
Int32 | The first item index that matches search conditions. |
See Also