Input for WinForms | ComponentOne
C1.Win.Input.DbNavigator.Events Namespace / NavItemMouseEventArgs Class / NavItemMouseEventArgs Constructor / NavItemMouseEventArgs Constructor(C1DbNavigator,MouseButtons,Int32,Int32,Int32,Int32)
One of the System.Windows.Forms.MouseButtons values that indicate which mouse button was pressed.
The number of times a mouse button was pressed.
The x-coordinate of a mouse click, in pixels.
The y-coordinate of a mouse click, in pixels.
A signed count of the number of detents the wheel has rotated.

In This Topic
    NavItemMouseEventArgs Constructor(C1DbNavigator,MouseButtons,Int32,Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the NavItemMouseEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal navigator As C1DbNavigator, _
       ByVal button As MouseButtons, _
       ByVal clicks As Integer, _
       ByVal x As Integer, _
       ByVal y As Integer, _
       ByVal delta As Integer _
    )
    public NavItemMouseEventArgs( 
       C1DbNavigator navigator,
       MouseButtons button,
       int clicks,
       int x,
       int y,
       int delta
    )

    Parameters

    navigator
    The owner of the event.
    button
    One of the System.Windows.Forms.MouseButtons values that indicate which mouse button was pressed.
    clicks
    The number of times a mouse button was pressed.
    x
    The x-coordinate of a mouse click, in pixels.
    y
    The y-coordinate of a mouse click, in pixels.
    delta
    A signed count of the number of detents the wheel has rotated.
    See Also