DataGridViewCell.GetErrorIconBounds Method

Definition

Returns the bounding rectangle that encloses the cell's error icon, if one is displayed.

protected:
 virtual System::Drawing::Rectangle GetErrorIconBounds(System::Drawing::Graphics ^ graphics, System::Windows::Forms::DataGridViewCellStyle ^ cellStyle, int rowIndex);
protected virtual System.Drawing.Rectangle GetErrorIconBounds (System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex);
abstract member GetErrorIconBounds : System.Drawing.Graphics * System.Windows.Forms.DataGridViewCellStyle * int -> System.Drawing.Rectangle
override this.GetErrorIconBounds : System.Drawing.Graphics * System.Windows.Forms.DataGridViewCellStyle * int -> System.Drawing.Rectangle
Protected Overridable Function GetErrorIconBounds (graphics As Graphics, cellStyle As DataGridViewCellStyle, rowIndex As Integer) As Rectangle

Parameters

graphics
Graphics

The graphics context for the cell.

cellStyle
DataGridViewCellStyle

The DataGridViewCellStyle to be applied to the cell.

rowIndex
Int32

The index of the cell's parent row.

Returns

The Rectangle that bounds the cell's error icon, if one is displayed; otherwise, Empty.

Remarks

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

This method is called internally when the ErrorIconBounds property is read.

Applies to

See also