DataGridView.GetRowDisplayRectangle(Int32, Boolean) Method

Definition

Returns the rectangle that represents the display area for a row, as determined by the row index.

C#
public System.Drawing.Rectangle GetRowDisplayRectangle(int rowIndex, bool cutOverflow);

Parameters

rowIndex
Int32

The row index for the desired cell.

cutOverflow
Boolean

true to return the row rectangle visible in the DataGridView bounds; false to return the entire row rectangle.

Returns

The Rectangle that represents the display rectangle of the row.

Exceptions

rowIndex is not in the valid range of 0 to the number of rows minus 1.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also