InputPanel for WinForms | ComponentOne
C1.Win.InputPanel.5 Assembly / C1.Win.InputPanel Namespace / LinkClickedEventArgs Class / LinkClickedEventArgs Constructor
System.Windows.Forms.MouseButtons that was pressed on the link.
The location of the mouse during the generating event.
Value of the link's HREF attribute.
Value of the link's TARGET attribute.

In This Topic
    LinkClickedEventArgs Constructor
    In This Topic
    Initializes a new instance of a LinkClickedEventArgs.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal button As MouseButtons, _
       ByVal location As Point, _
       ByVal hRef As String, _
       ByVal target As String _
    )
    public LinkClickedEventArgs( 
       MouseButtons button,
       Point location,
       string hRef,
       string target
    )

    Parameters

    button
    System.Windows.Forms.MouseButtons that was pressed on the link.
    location
    The location of the mouse during the generating event.
    hRef
    Value of the link's HREF attribute.
    target
    Value of the link's TARGET attribute.
    See Also