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)
<BrowsableAttribute(False)> Public Property Item ( columnIndex As Integer, rowIndex As Integer ) As DataGridViewCell
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.DataGridViewCellThe 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. |
The following code example demonstrates the use of this indexer.
.NET Framework
Available since 2.0
Available since 2.0
Show: