Calendar for WinForms | ComponentOne
C1.Win.Input Namespace / ItemTooltipShowingEventArgs Class / ItemTooltipShowingEventArgs Constructor
Index of the highlighted drop-down list item.
HTML content to be displayed in the tooltip.
Highlighted drop-down list item bounds (size and location of element) within its parent element, in pixels.
The X coordinate of the client where the tooltip should be displayed.
The Y coordinate of the client where the tooltip should be displayed.
C1.Win.SuperTooltip.C1SuperTooltipBase object for setting tooltip options.

In This Topic
    ItemTooltipShowingEventArgs Constructor
    In This Topic
    Initializes a new instance of the ItemTooltipShowingEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal index As Integer, _
       ByVal text As String, _
       ByVal bounds As Rectangle, _
       ByVal x As Integer, _
       ByVal y As Integer, _
       ByVal tooltip As C1.Win.SuperTooltip.C1SuperTooltipBase _
    )
    public ItemTooltipShowingEventArgs( 
       int index,
       string text,
       Rectangle bounds,
       int x,
       int y,
       C1.Win.SuperTooltip.C1SuperTooltipBase tooltip
    )

    Parameters

    index
    Index of the highlighted drop-down list item.
    text
    HTML content to be displayed in the tooltip.
    bounds
    Highlighted drop-down list item bounds (size and location of element) within its parent element, in pixels.
    x
    The X coordinate of the client where the tooltip should be displayed.
    y
    The Y coordinate of the client where the tooltip should be displayed.
    tooltip
    C1.Win.SuperTooltip.C1SuperTooltipBase object for setting tooltip options.
    See Also