DataView::Find Method (Object^)
.NET Framework (current version)
Finds a row in the DataView by the specified sort key value.
Assembly: System.Data (in System.Data.dll)
Parameters
- key
-
Type:
System::Object^
The object to search for.
Return Value
Type: System::Int32The index of the row in the DataView that contains the sort key value specified; otherwise -1 if the sort key value does not exist.
The following Visual Basic example uses the Find method to return the index of the row that contains the value in the sort key column that you want.
Private Sub FindValueInDataView(table As DataTable) Dim view As DataView = New DataView(table) view.Sort = "CustomerID" ' Find the customer named "DUMON" in the primary key column Dim i As Integer = view.Find("DUMON") Console.WriteLine(view(i)) End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: