'Declaration Public Event CellPaint As TableLayoutCellPaintEventHandler
public event TableLayoutCellPaintEventHandler CellPaint
Event Data
The event handler receives an argument of type TableLayoutCellPaintEventArgs containing data related to this event. The following TableLayoutCellPaintEventArgs properties provide information specific to this event.
Property | Description |
---|---|
CellBounds | Gets the size and location of the cell. |
ClipRectangle | Gets the rectangle in which to paint. (Inherited from System.Windows.Forms.PaintEventArgs) |
Column | Gets the column of the cell. |
Graphics | Gets the graphics used to paint. (Inherited from System.Windows.Forms.PaintEventArgs) |
Row | Gets the row of the cell. |
See Also