FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / DrawCell Method / DrawCell(PaintEventArgs,Int32,Int32,DrawColorMode) Method
A System.Windows.Forms.PaintEventArgs that contains a System.Drawing.Graphics object where the cell will be drawn.
Index of the cell's row.
Index of the cell's column.
Drawing color mode.

In This Topic
    DrawCell(PaintEventArgs,Int32,Int32,DrawColorMode) Method
    In This Topic
    Draws a grid cell.
    Syntax
    'Declaration
     
    
    Protected Overloads Overrides Function DrawCell( _
       ByVal e As PaintEventArgs, _
       ByVal row As Integer, _
       ByVal col As Integer, _
       ByVal colorMode As DrawColorMode _
    ) As Integer
    protected override int DrawCell( 
       PaintEventArgs e,
       int row,
       int col,
       DrawColorMode colorMode
    )

    Parameters

    e
    A System.Windows.Forms.PaintEventArgs that contains a System.Drawing.Graphics object where the cell will be drawn.
    row
    Index of the cell's row.
    col
    Index of the cell's column.
    colorMode
    Drawing color mode.

    Return Value

    The index of the last column painted (may be greater than col if columns are merged).
    Remarks
    This method is for internal use. It allows inherited classes to customize the grid appearance.
    See Also