DataGridView.Item[] Propriedade
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.
Fornece um indexador para obter ou definir a célula localizada na interseção da coluna e da linha especificadas.
Sobrecargas
Item[Int32, Int32] |
Fornece um indexador para obter ou definir a célula localizada na interseção da coluna e da linha com os índices especificados. |
Item[String, Int32] |
Fornece um indexador para obter ou definir a célula localizada na interseção da linha com o índice especificado e a coluna com o nome especificado. |
Item[Int32, Int32]
Fornece um indexador para obter ou definir a célula localizada na interseção da coluna e da linha com os índices especificados.
public:
property System::Windows::Forms::DataGridViewCell ^ default[int, int] { System::Windows::Forms::DataGridViewCell ^ get(int columnIndex, int rowIndex); void set(int columnIndex, int rowIndex, System::Windows::Forms::DataGridViewCell ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewCell this[int columnIndex, int rowIndex] { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Item(int * int) : System.Windows.Forms.DataGridViewCell with get, set
Default Public Property Item(columnIndex As Integer, rowIndex As Integer) As DataGridViewCell
Parâmetros
- columnIndex
- Int32
O índice da coluna que contém a célula.
- rowIndex
- Int32
O índice da linha que contém a célula.
Valor da propriedade
O DataGridViewCell no local especificado.
- Atributos
Exceções
columnIndex
é menor que 0 ou maior que o número de colunas no controle menos 1.
- ou -
rowIndex
é menor que 0 ou maior que o número de linhas no controle menos 1.
Exemplos
O exemplo de código a seguir demonstra o uso desse indexador.
// Retrieve the cell value for the cell at column 3, row 7.
String testValue1 = (String)dataGridView1[3, 7].Value;
// Retrieve the cell value for the cell in the Name column at row 4.
String testValue2 = (String)dataGridView1["Name", 4].Value;
' Retrieve the cell value for the cell at column 3, row 7.
Dim testValue1 As String = CStr(dataGridView1(3, 7).Value)
' Retrieve the cell value for the cell in the Name column at row 4.
Dim testValue2 As String = CStr(dataGridView1("Name", 4).Value)
Comentários
Esse indexador é uma alternativa para acessar células por meio da Cells coleção da Rows coleção.
Confira também
- Cells
- DataGridViewCellCollection
- Rows
- DataGridViewRowCollection
- Controle DataGridView (Windows Forms)
Aplica-se a
Item[String, Int32]
Fornece um indexador para obter ou definir a célula localizada na interseção da linha com o índice especificado e a coluna com o nome especificado.
public:
property System::Windows::Forms::DataGridViewCell ^ default[System::String ^, int] { System::Windows::Forms::DataGridViewCell ^ get(System::String ^ columnName, int rowIndex); void set(System::String ^ columnName, int rowIndex, System::Windows::Forms::DataGridViewCell ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.DataGridViewCell this[string columnName, int rowIndex] { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Item(string * int) : System.Windows.Forms.DataGridViewCell with get, set
Default Public Property Item(columnName As String, rowIndex As Integer) As DataGridViewCell
Parâmetros
- columnName
- String
O nome da coluna que contém a célula.
- rowIndex
- Int32
O índice da linha que contém a célula.
Valor da propriedade
O DataGridViewCell no local especificado.
- Atributos
Exemplos
O exemplo de código a seguir demonstra o uso desse indexador.
// Retrieve the cell value for the cell at column 3, row 7.
String testValue1 = (String)dataGridView1[3, 7].Value;
// Retrieve the cell value for the cell in the Name column at row 4.
String testValue2 = (String)dataGridView1["Name", 4].Value;
' Retrieve the cell value for the cell at column 3, row 7.
Dim testValue1 As String = CStr(dataGridView1(3, 7).Value)
' Retrieve the cell value for the cell in the Name column at row 4.
Dim testValue2 As String = CStr(dataGridView1("Name", 4).Value)
Comentários
Esse indexador é uma alternativa para acessar células por meio da Cells coleção da Rows coleção.
Confira também
- Cells
- DataGridViewCellCollection
- Rows
- DataGridViewRowCollection
- Controle DataGridView (Windows Forms)