DataTableCollection.IndexOf Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o índice na coleção do objeto DataTable especificado.
Sobrecargas
IndexOf(String, String) |
Obtém o índice na coleção do objeto DataTable especificado. |
IndexOf(DataTable) |
Obtém o índice do objeto DataTable especificado. |
IndexOf(String) |
Obtém o índice na coleção do objeto DataTable com o nome especificado. |
IndexOf(String, String)
- Origem:
- DataTableCollection.cs
- Origem:
- DataTableCollection.cs
- Origem:
- DataTableCollection.cs
Obtém o índice na coleção do objeto DataTable especificado.
public:
int IndexOf(System::String ^ tableName, System::String ^ tableNamespace);
public int IndexOf (string tableName, string tableNamespace);
member this.IndexOf : string * string -> int
Public Function IndexOf (tableName As String, tableNamespace As String) As Integer
Parâmetros
Retornos
O índice baseado em zero da DataTable com o nome especificado ou -1 se a tabela não existir na coleção.
Exemplos
O exemplo a seguir retorna o índice de uma tabela nomeada no DataTableCollection.
private void GetIndexes()
{
// Get the DataSet of a DataGrid.
DataSet thisDataSet = (DataSet)DataGrid1.DataSource;
// Get the DataTableCollection through the Tables property.
DataTableCollection tables = thisDataSet.Tables;
// Get the index of the table named "Authors", if it exists.
if (tables.Contains("Authors"))
System.Diagnostics.Debug.WriteLine(tables.IndexOf("Authors"));
}
Private Sub GetIndexes()
' Get the DataSet of a DataGrid.
Dim thisDataSet As DataSet = CType(DataGrid1.DataSource, DataSet)
' Get the DataTableCollection through the Tables property.
Dim tables As DataTableCollection = thisDataSet.Tables
' Get the index of the table named "Authors", if it exists.
If tables.Contains("Authors") Then
System.Diagnostics.Debug.WriteLine(tables.IndexOf("Authors"))
End If
End Sub
Comentários
Especifique o nome do DataTable objeto usando a TableName propriedade .
Confira também
Aplica-se a
IndexOf(DataTable)
- Origem:
- DataTableCollection.cs
- Origem:
- DataTableCollection.cs
- Origem:
- DataTableCollection.cs
Obtém o índice do objeto DataTable especificado.
public:
int IndexOf(System::Data::DataTable ^ table);
public:
virtual int IndexOf(System::Data::DataTable ^ table);
public int IndexOf (System.Data.DataTable? table);
public int IndexOf (System.Data.DataTable table);
public virtual int IndexOf (System.Data.DataTable table);
member this.IndexOf : System.Data.DataTable -> int
abstract member IndexOf : System.Data.DataTable -> int
override this.IndexOf : System.Data.DataTable -> int
Public Function IndexOf (table As DataTable) As Integer
Public Overridable Function IndexOf (table As DataTable) As Integer
Parâmetros
- table
- DataTable
O DataTable
a ser pesquisado.
Retornos
O índice baseado em zero da tabela ou -1 se a tabela não for encontrada na coleção.
Exemplos
O exemplo a seguir retorna o índice de cada tabela no DataTableCollection.
private void GetIndexes()
{
// Get the DataSet of a DataGrid.
DataSet thisDataSet = (DataSet)DataGrid1.DataSource;
// Get the DataTableCollection through the Tables property.
DataTableCollection tables = thisDataSet.Tables;
// Get the index of each table in the collection.
foreach (DataTable table in tables)
System.Diagnostics.Debug.WriteLine(tables.IndexOf(table));
}
Private Sub GetIndexes()
' Get the DataSet of a DataGrid.
Dim thisDataSet As DataSet = CType(DataGrid1.DataSource, DataSet)
' Get the DataTableCollection through the Tables property.
Dim tables As DataTableCollection = thisDataSet.Tables
Dim table As DataTable
' Get the index of each table in the collection.
For Each table In tables
System.Diagnostics.Debug.WriteLine(tables.IndexOf(table))
Next
End Sub
Comentários
Use o IndexOf método para determinar o índice exato de uma determinada tabela.
Antes de chamar IndexOf, você pode testar a existência de uma tabela (especificada por índice ou nome) usando o Contains método .
Confira também
Aplica-se a
IndexOf(String)
- Origem:
- DataTableCollection.cs
- Origem:
- DataTableCollection.cs
- Origem:
- DataTableCollection.cs
Obtém o índice na coleção do objeto DataTable com o nome especificado.
public:
int IndexOf(System::String ^ tableName);
public:
virtual int IndexOf(System::String ^ tableName);
public int IndexOf (string? tableName);
public int IndexOf (string tableName);
public virtual int IndexOf (string tableName);
member this.IndexOf : string -> int
abstract member IndexOf : string -> int
override this.IndexOf : string -> int
Public Function IndexOf (tableName As String) As Integer
Public Overridable Function IndexOf (tableName As String) As Integer
Parâmetros
- tableName
- String
O nome do objeto DataTable
a ser pesquisado.
Retornos
O índice baseado em zero da DataTable
com o nome especificado ou -1 se a tabela não existir na coleção.
Exemplos
O exemplo a seguir retorna o índice de uma tabela nomeada no DataTableCollection.
private void GetIndexes()
{
// Get the DataSet of a DataGrid.
DataSet thisDataSet = (DataSet)DataGrid1.DataSource;
// Get the DataTableCollection through the Tables property.
DataTableCollection tables = thisDataSet.Tables;
// Get the index of the table named "Authors", if it exists.
if (tables.Contains("Authors"))
System.Diagnostics.Debug.WriteLine(tables.IndexOf("Authors"));
}
Private Sub GetIndexes()
' Get the DataSet of a DataGrid.
Dim thisDataSet As DataSet = CType(DataGrid1.DataSource, DataSet)
' Get the DataTableCollection through the Tables property.
Dim tables As DataTableCollection = thisDataSet.Tables
' Get the index of the table named "Authors", if it exists.
If tables.Contains("Authors") Then
System.Diagnostics.Debug.WriteLine(tables.IndexOf("Authors"))
End If
End Sub
Comentários
Especifique o nome do DataTable
objeto usando a TableName propriedade .
Esse método retorna -1 quando duas ou mais tabelas têm o mesmo nome, mas namespaces diferentes. A chamada não terá êxito se houver qualquer ambiguidade durante a correspondência de um nome de tabela para exatamente uma tabela.