'Declaration
Event TooltipShowing As EventHandler(Of ItemTooltipShowingEventArgs)
event EventHandler<ItemTooltipShowingEventArgs> TooltipShowing
Event Data
The event handler receives an argument of type ItemTooltipShowingEventArgs containing data related to this event. The following ItemTooltipShowingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Bounds | Gets the highlighted drop-down list item bounds (size and location) within it`s parent element, in pixels. |
Handled | (Inherited from System.ComponentModel.HandledEventArgs) |
Index | Gets the index of the highlighted drop-down list item. |
Text | Gets or sets the content to be displayed in the tooltip. |
Tooltip | Gets the C1.Win.SuperTooltip.C1SuperTooltipBase object for setting tooltip options. |
X | Gets or sets the X coordinate of the client where the tooltip should be displayed. The coordinate is counted from the upper left corner of the drop-down window. |
Y | Gets or sets the Y coordinate of the client where the tooltip should be displayed. The coordinate is counted from the upper left corner of the drop-down window. |
See Also