DataGridViewCellPaintingEventArgs.PaintBackground(Rectangle, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
绘制指定边界中相应区域的单元格背景。
public:
void PaintBackground(System::Drawing::Rectangle clipBounds, bool cellsPaintSelectionBackground);
public void PaintBackground (System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground);
member this.PaintBackground : System.Drawing.Rectangle * bool -> unit
Public Sub PaintBackground (clipBounds As Rectangle, cellsPaintSelectionBackground As Boolean)
参数
- clipBounds
- Rectangle
一个指定要绘制的 Rectangle 区域的 DataGridView。
- cellsPaintSelectionBackground
- Boolean
true
用于使用 SelectionBackColor 的 InheritedStyle 属性的颜色绘制指定边界的背景;false
用于使用 BackColor 的 InheritedStyle 属性的颜色绘制指定边界的背景。
例外
RowIndex 小于 -1 或大于等于 DataGridView 控件中的行数。
- 或 - ColumnIndex 小于 -1 或大于等于 DataGridView 控件中的列数。