DataGridViewCell::GetContentBounds Method (Int32)

 

Returns the bounding rectangle that encloses the cell's content area using a default Graphics and cell style currently in effect for the cell.

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

public:
Rectangle GetContentBounds(
	int rowIndex
)

Parameters

rowIndex
Type: System::Int32

The index of the cell's parent row.

Return Value

Type: System.Drawing::Rectangle

The Rectangle that bounds the cell's contents.

Exception Condition
ArgumentOutOfRangeException

The specified rowIndex is less than 0 or greater than the number of rows in the control minus 1.

InvalidOperationException

ColumnIndex is less than 0, indicating that the cell is a row header cell.

The size of the cell's contents is computed dynamically when this method is called. The base class implementation always returns Rectangle::Empty.

.NET Framework
Available since 2.0
Return to top
Show: