DataGridView.GetRowDisplayRectangle(Int32, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.