DataGridViewCell.ErrorIconBounds Property

Definition

Gets the bounds of the error icon for the cell.

public:
 property System::Drawing::Rectangle ErrorIconBounds { System::Drawing::Rectangle get(); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Rectangle ErrorIconBounds { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ErrorIconBounds : System.Drawing.Rectangle
Public ReadOnly Property ErrorIconBounds As Rectangle

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

See also