DataGridViewRowPrePaintEventArgs::RowBounds Property
.NET Framework (current version)
Get the bounds of the current DataGridViewRow.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System.Drawing::RectangleA Rectangle that represents the bounds of the current DataGridViewRow.
The width of the RowBounds property is the same as the width of the DataGridView. To get the width of the columns in the DataGridView, use the GetColumnsWidth method.
The following code example demonstrates how to use the RowBounds property to calculate the bounds of the row to paint a custom background. The variable, e, is of type DataGridViewRowPrePaintEventArgs. This code example is part of a larger example provided in How to: Customize the Appearance of Rows in the Windows Forms DataGridView Control.
.NET Framework
Available since 2.0
Available since 2.0
Show: