DataGridView.Item[] Свойство

Определение

Предоставляет индексатор для получения или задания ячейки, расположенной на пересечении указанных строки и столбца.

Перегрузки

Item[Int32, Int32]

Предоставляет индексатор для получения или задания ячейки, расположенной на пересечении строки и столбца с заданными индексами.

Item[String, Int32]

Предоставляет индексатор для получения или задания ячейки, расположенной на пересечении строки с указанным индексом и столбца с указанным именем.

Item[Int32, Int32]

Предоставляет индексатор для получения или задания ячейки, расположенной на пересечении строки и столбца с заданными индексами.

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

Параметры

columnIndex
Int32

Индекс столбца, содержащего ячейку.

rowIndex
Int32

Индекс строки, содержащей ячейку.

Значение свойства

DataGridViewCell

Класс DataGridViewCell в заданном местоположении.

Атрибуты

Исключения

Значение columnIndex меньше 0 или больше количества столбцов в элементе управления минус 1.

-или- Значение rowIndex меньше 0 или больше количества строк в элементе управления минус 1.

Примеры

В следующем примере кода показано использование этого индексатора.

// 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)

Комментарии

Этот индексатор является альтернативой доступу к ячейкам через Cells коллекцию Rows коллекции.

См. также раздел

Применяется к

Item[String, Int32]

Предоставляет индексатор для получения или задания ячейки, расположенной на пересечении строки с указанным индексом и столбца с указанным именем.

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

Параметры

columnName
String

Имя столбца, содержащего ячейку.

rowIndex
Int32

Индекс строки, содержащей ячейку.

Значение свойства

DataGridViewCell

Класс DataGridViewCell в заданном местоположении.

Атрибуты

Примеры

В следующем примере кода показано использование этого индексатора.

// 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)

Комментарии

Этот индексатор является альтернативой доступу к ячейкам через Cells коллекцию Rows коллекции.

См. также раздел

Применяется к