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 控制項中的資料行數。