C1.Win.FlexGrid Namespace / C1FlexGridBase Class / DrawCell Method / DrawCell(PaintEventArgs,Int32,Int32) 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.

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

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.

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