DataGridView.GetRowDisplayRectangle(Int32, Boolean) Method

Definition

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

public:
 System::Drawing::Rectangle GetRowDisplayRectangle(int rowIndex, bool cutOverflow);
public System.Drawing.Rectangle GetRowDisplayRectangle (int rowIndex, bool cutOverflow);
member this.GetRowDisplayRectangle : int * bool -> System.Drawing.Rectangle
Public Function GetRowDisplayRectangle (rowIndex As Integer, cutOverflow As Boolean) As Rectangle

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

See also