DataView.FindRows Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an array of DataRowView objects whose columns match the specified sort key value.
Overloads
FindRows(Object) |
Returns an array of DataRowView objects whose columns match the specified sort key value. |
FindRows(Object[]) |
Returns an array of DataRowView objects whose columns match the specified sort key value. |
FindRows(Object)
- Source:
- DataView.cs
- Source:
- DataView.cs
- Source:
- DataView.cs
Returns an array of DataRowView objects whose columns match the specified sort key value.
public:
cli::array <System::Data::DataRowView ^> ^ FindRows(System::Object ^ key);
public System.Data.DataRowView[] FindRows (object? key);
public System.Data.DataRowView[] FindRows (object key);
member this.FindRows : obj -> System.Data.DataRowView[]
Public Function FindRows (key As Object) As DataRowView()
Parameters
Returns
An array of DataRowView
objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty DataRowView
array.
See also
Applies to
FindRows(Object[])
- Source:
- DataView.cs
- Source:
- DataView.cs
- Source:
- DataView.cs
Returns an array of DataRowView objects whose columns match the specified sort key value.
public:
cli::array <System::Data::DataRowView ^> ^ FindRows(cli::array <System::Object ^> ^ key);
public System.Data.DataRowView[] FindRows (object?[] key);
public System.Data.DataRowView[] FindRows (object[] key);
member this.FindRows : obj[] -> System.Data.DataRowView[]
Public Function FindRows (key As Object()) As DataRowView()
Parameters
Returns
An array of DataRowView
objects whose columns match the specified sort key value; or, if no rows contain the specified sort key values, an empty DataRowView
array.