'Declaration
Public Event ButtonClick As EventHandler(Of TabStripButtonClickEventArgs)
'Usage
Dim instance As TabStrip Dim handler As EventHandler(Of TabStripButtonClickEventArgs) AddHandler instance.ButtonClick, handler
public event EventHandler<TabStripButtonClickEventArgs> ButtonClick
Event Data
The event handler receives an argument of type TabStripButtonClickEventArgs containing data related to this event. The following TabStripButtonClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Button | Gets the tab strip button. |
Handled | (Inherited from System.ComponentModel.HandledEventArgs) |
See Also