NavItemClickEventArgs Constructor(NavItem,MouseButtons,Int32,Int32,Int32,Int32)
In This Topic
Initializes a new instance of the
NavItemClickEventArgs class.
Syntax
'Declaration
Public Function New( _
ByVal As NavItem, _
ByVal As MouseButtons, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
public NavItemClickEventArgs(
NavItem ,
MouseButtons ,
int ,
int ,
int ,
int
)
Parameters
- item
- Item to click.
- 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