Ribbon for WinForms | ComponentOne
C1.Win.Ribbon Namespace / C1Ribbon Class / PopupToolTip Event

In This Topic
    PopupToolTip Event (C1Ribbon)
    In This Topic
    Occurs before a tooltip is displayed.
    Syntax
    'Declaration
     
    
    Public Event PopupToolTip As EventHandler(Of ToolTipPositionEventArgs)
    public event 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.

    PropertyDescription
    Gets a reference to the System.ComponentModel.Component that provides the tooltip text and location.  
    Gets the bounds of the System.ComponentModel.Component that provides the tooltip text and location.  
    Gets or sets the location where the tooltip will be displayed.  
    Gets or sets the text that will be displayed in the tooltip.  
    See Also