Edit

Share via


DataGridViewCell.ErrorIconBounds Property

Definition

Gets the bounds of the error icon for the cell.

C#
[System.ComponentModel.Browsable(false)]
public System.Drawing.Rectangle ErrorIconBounds { get; }

Property Value

A Rectangle that represents the bounds of the error icon for the current DataGridViewCell.

Attributes

Exceptions

The cell does not belong to a DataGridView control.

-or-

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

The row containing the cell is a shared row.

-or-

The cell is a column header cell.

Remarks

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also