ComponentOne CalendarView for WinForms
C1.Win.C1Input Namespace / C1ComboBox Class / TooltipShowing Event

In This Topic
    TooltipShowing Event
    In This Topic
    Occurs before a tooltip is displayed for a highlighted drop-down list item. Allows to set tooltip options or cancel the tooltip display.
    Syntax
    'Declaration
     
    
    Public Event TooltipShowing As EventHandler(Of TooltipShowingEventArgs)
    public event EventHandler<TooltipShowingEventArgs> TooltipShowing
    Event Data

    The event handler receives an argument of type TooltipShowingEventArgs containing data related to this event. The following TooltipShowingEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the highlighted drop-down list item bounds (size and location) within it`s parent element, in pixels.  
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets or sets the duration of the tooltip, in milliseconds.  
    Gets or sets a value indicating whether the event was handled.  
    Gets the index of the highlighted drop-down list item.  
    Gets or sets the HTML content to be displayed in the tooltip.  
    Gets the C1.Win.C1SuperTooltip.C1SuperTooltipBase object for setting tooltip options.  
    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.  
    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