DataGridView::GetCellDisplayRectangle Method (Int32, Int32, Boolean)
Returns the rectangle that represents the display area for a cell.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: Rectangle GetCellDisplayRectangle( int columnIndex, int rowIndex, bool cutOverflow )
Parameters
- columnIndex
-
Type:
System::Int32
The column index for the desired cell.
- rowIndex
-
Type:
System::Int32
The row index for the desired cell.
- cutOverflow
-
Type:
System::Boolean
true to return the displayed portion of the cell only; false to return the entire cell bounds.
Return Value
Type: System.Drawing::RectangleThe Rectangle that represents the display rectangle of the cell.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | columnIndex is less than -1 or greater than the number of columns in the control minus 1. -or- rowIndex is less than -1 or greater than the number of rows in the control minus 1. |
This method returns the entire cell bounds or the displayed portion only. To get the bounds of the cell contents only, use the cell ContentBounds property.
Available since 2.0