ComponentOne SuperTooltip for WinForms
C1.Win.8 Assembly / C1.Win.SuperTooltip Namespace / C1SuperTooltipBase Class / Show Method / Show(String,Control,Int32,Int32,Int32) Method
Text to be displayed in the tooltip.
System.Windows.Forms.Control that the tooltip is associated with.
X client coordinate where the tooltip is to be displayed.
Y client coordinate where the tooltip is to be displayed.
Duration of the tooltip, in milliseconds.

In This Topic
    Show(String,Control,Int32,Int32,Int32) Method
    In This Topic
    Shows the tooltip with the specified text, for the specified control, at the specified position, for a specified amount of time.
    Syntax
    'Declaration
     
    Public Overloads Sub Show( _
       ByVal text As System.String, _
       ByVal control As System.Windows.Forms.Control, _
       ByVal x As System.Integer, _
       ByVal y As System.Integer, _
       ByVal duration As System.Integer _
    ) 
    public void Show( 
       System.string text,
       System.Windows.Forms.Control control,
       System.int x,
       System.int y,
       System.int duration
    )

    Parameters

    text
    Text to be displayed in the tooltip.
    control
    System.Windows.Forms.Control that the tooltip is associated with.
    x
    X client coordinate where the tooltip is to be displayed.
    y
    Y client coordinate where the tooltip is to be displayed.
    duration
    Duration of the tooltip, in milliseconds.
    See Also