DataGridViewCell.GetErrorIconBounds 方法

定义

如果显示了单元格的错误图标,则返回环绕该图标的边框。

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

参数

graphics
Graphics

单元格的图形上下文。

cellStyle
DataGridViewCellStyle

要应用到单元格的 DataGridViewCellStyle

rowIndex
Int32

该单元格的父行索引。

返回

如果显示了单元格的错误图标,则为包围该图标的 Rectangle;否则为 Empty

注解

调用此方法时,会动态计算单元格的错误图标区域的大小。 基类实现始终返回 Rectangle.Empty

读取 属性时, ErrorIconBounds 将在内部调用此方法。

适用于

另请参阅