Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataGridViewRowPostPaintEventArgs::RowBounds Property

 

Get the bounds of the current DataGridViewRow.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property Rectangle RowBounds {
	Rectangle get();
}

Property Value

Type: System.Drawing::Rectangle

A 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 determine the bounds of the visible cells in a row. This code example is part of a larger example provided in How to: Customize the Appearance of Rows in the Windows Forms DataGridView Control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft