'Declaration
Public Event PaintTabStripButton As PaintTabStripButtonEventHandler
'Usage
Dim instance As FpSpread Dim handler As PaintTabStripButtonEventHandler AddHandler instance.PaintTabStripButton, handler
public event PaintTabStripButtonEventHandler PaintTabStripButton
Event Data
The event handler receives an argument of type PaintTabStripButtonEventArgs containing data related to this event. The following PaintTabStripButtonEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ButtonRectangle | Gets the rectangular area that represents the tab button. |
Cancel | Gets or sets the cancel flag. |
Graphics | Gets the graphics device that handles the tab button. |
Pressed | Gets or sets whether the tab button is pressed. |
TabButton | Gets the tab button to paint. |
See Also