'Declaration Public Event PopupToolTip As System.EventHandler(Of ToolTipPositionEventArgs)
public event System.EventHandler<ToolTipPositionEventArgs> PopupToolTip
Event Data
The event handler receives an argument of type ToolTipPositionEventArgs containing data related to this event. The following ToolTipPositionEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Component | Gets a reference to the System.ComponentModel.Component that provides the tooltip text and location. |
ComponentBounds | Gets the bounds of the System.ComponentModel.Component that provides the tooltip text and location. |
Location | Gets or sets the location where the tooltip will be displayed. |
Text | Gets or sets the text that will be displayed in the tooltip. |
See Also