DataGridViewCell.ContentBounds Property
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.
Gets the bounding rectangle that encloses the cell's content area.
public:
property System::Drawing::Rectangle ContentBounds { System::Drawing::Rectangle get(); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Rectangle ContentBounds { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ContentBounds : System.Drawing.Rectangle
Public ReadOnly Property ContentBounds As Rectangle
Property Value
The Rectangle that bounds the cell's contents.
- Attributes
Exceptions
The row containing the cell is a shared row.
-or-
The cell is a column header cell.
The value of the ColumnIndex property is less than 0, indicating that the cell is a row header cell.
Remarks
The returned rectangle reports client coordinates, in pixels.
This property calls the GetContentBounds method to get its value. For the base DataGridViewCell type, this value is Empty.
To get the bounding rectangle of the cell rather than the cell contents, use the DataGridView.GetCellDisplayRectangle method.