'Declaration Public Event CellPaint As System.Windows.Forms.TableLayoutCellPaintEventHandler
public event System.Windows.Forms.TableLayoutCellPaintEventHandler CellPaint
Event Data
The event handler receives an argument of type System.Windows.Forms.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 | (Inherited from System.Windows.Forms.PaintEventArgs) |
Column | Gets the column of the cell. |
Graphics | (Inherited from System.Windows.Forms.PaintEventArgs) |
Row | Gets the row of the cell. |
See Also