C1TreeViewColumnMouseEventArgs Constructor
In This Topic
Initializes a new instance of the
C1TreeViewColumnMouseEventArgs class.
Syntax
'Declaration
Public Function New( _
ByVal As MouseButtons, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal columnIndex As Integer _
)
public C1TreeViewColumnMouseEventArgs(
MouseButtons ,
int ,
int ,
int ,
int ,
int columnIndex
)
Parameters
- 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.
- columnIndex
- The tree column index of TreeView control.
See Also