TreeView for WinForms | ComponentOne
C1.Win.SuperTooltip Namespace / PopupEventArgs Class / PopupEventArgs Constructor
Form that contains the tooltip.
Control that contains the tooltip text.
System.Drawing.Point that specifies the top left corner of the tooltip.
String that will be displayed in the tooltip.

In This Topic
    PopupEventArgs Constructor
    In This Topic
    Initializes a new instance of a PopupEventArgs object.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal form As Form, _
       ByVal control As Control, _
       ByVal location As Point, _
       ByVal text As String _
    )
    public PopupEventArgs( 
       Form form,
       Control control,
       Point location,
       string text
    )

    Parameters

    form
    Form that contains the tooltip.
    control
    Control that contains the tooltip text.
    location
    System.Drawing.Point that specifies the top left corner of the tooltip.
    text
    String that will be displayed in the tooltip.
    See Also