TreeView for WinForms | ComponentOne
C1.Win.C1SuperTooltip Namespace / C1SuperTooltipBase Class / Popup Event

In This Topic
    Popup Event (C1SuperTooltipBase)
    In This Topic
    Fires before the C1SuperTooltipBase is displayed.
    Syntax
    'Declaration
     
    
    <C1DescriptionAttribute("ST.Popup", "Fires before the C1SuperTooltip is displayed.")>
    Public Event Popup As PopupEventHandler
    [C1Description("ST.Popup", "Fires before the C1SuperTooltip is displayed.")]
    public event PopupEventHandler Popup
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets a reference to the Control that provides the tooltip text and location.  
    Gets a reference to the Form that contains the tooltip.  
    Gets or sets the location where the tooltip will be displayed.  
    Gets or sets the text that will be displayed in the tooltip.  
    Gets a reference to the ToolStripItem that provides the tooltip text.  
    Remarks
    This event allows you to modify the location of the tooltip (by adjusting the PopupEventArgs.Location parameter), or to prevent the tooltip from being displayed (by setting the System.ComponentModel.CancelEventArgs.Cancel parameter.
    See Also