The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
DataGridView::Item Property (Int32, Int32)
.NET Framework (current version)
Provides an indexer to get or set the cell located at the intersection of the column and row with the specified indexes.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property DataGridViewCell^ default[ int columnIndex, int rowIndex ] { DataGridViewCell^ get(int columnIndex, int rowIndex); void set(int columnIndex, int rowIndex, DataGridViewCell^ value); }
Parameters
- columnIndex
-
Type:
System::Int32
The index of the column containing the cell.
- rowIndex
-
Type:
System::Int32
The index of the row containing the cell.
Property Value
Type: System.Windows.Forms::DataGridViewCell^The DataGridViewCell at the specified location.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | columnIndex is less than 0 or greater than the number of columns in the control minus 1. -or- rowIndex is less than 0 or greater than the number of rows in the control minus 1. |
.NET Framework
Available since 2.0
Available since 2.0
Show: