DataGridViewCell::ErrorIconBounds Property
.NET Framework (current version)
Gets the bounds of the error icon for the cell.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property Rectangle ErrorIconBounds { Rectangle get(); }
Property Value
Type: System.Drawing::RectangleA Rectangle that represents the bounds of the error icon for the current DataGridViewCell.
| Exception | Condition |
|---|---|
| InvalidOperationException | The cell does not belong to a DataGridView control. -or- ColumnIndex is less than 0, indicating that the cell is a row header cell. |
| ArgumentOutOfRangeException | The row containing the cell is a shared row. -or- The cell is a column header cell. |
The returned rectangle reports client coordinates, in pixels.
When the DataGridView::ShowCellErrors property is false, the value of this property is Empty.
This property calls the GetErrorIconBounds method to get its value. For the base DataGridViewCell type, this value is always Empty.
.NET Framework
Available since 2.0
Available since 2.0
Show: