DataGridViewRowPrePaintEventArgs.PaintHeader Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Paints the row header of the current row.
Overloads
PaintHeader(Boolean) |
Paints the entire row header of the current DataGridViewRow. |
PaintHeader(DataGridViewPaintParts) |
Paints the specified parts of the row header of the current row. |
PaintHeader(Boolean)
Paints the entire row header of the current DataGridViewRow.
public:
void PaintHeader(bool paintSelectionBackground);
public void PaintHeader (bool paintSelectionBackground);
member this.PaintHeader : bool -> unit
Public Sub PaintHeader (paintSelectionBackground As Boolean)
Parameters
- paintSelectionBackground
- Boolean
true
to paint the row header with the color of the SelectionBackColor property of the InheritedStyle; false
to paint the row header with the BackColor of the RowHeadersDefaultCellStyle property.
Exceptions
RowIndex is less than zero or greater than the number of rows in the DataGridView control minus one.
Remarks
Use the PaintHeader method when you draw the DataGridViewRow and its cells' contents yourself. If you manually paint the entire row and its cells' contents, set the Handled property to true
. When Handled is true
, the CellPainting and RowPostPaint events do not occur.
See also
Applies to
PaintHeader(DataGridViewPaintParts)
Paints the specified parts of the row header of the current row.
public:
void PaintHeader(System::Windows::Forms::DataGridViewPaintParts paintParts);
public void PaintHeader (System.Windows.Forms.DataGridViewPaintParts paintParts);
member this.PaintHeader : System.Windows.Forms.DataGridViewPaintParts -> unit
Public Sub PaintHeader (paintParts As DataGridViewPaintParts)
Parameters
- paintParts
- DataGridViewPaintParts
A bitwise combination of DataGridViewPaintParts values specifying the parts to paint.
Exceptions
RowIndex is less than zero or greater than the number of rows in the DataGridView control minus one.