TreeView for WinForms | ComponentOne
C1.Win.TreeView Namespace / C1TreeViewColumnMouseEventArgs Class / C1TreeViewColumnMouseEventArgs Constructor
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.
The tree column index of TreeView control.

In This Topic
    C1TreeViewColumnMouseEventArgs Constructor
    In This Topic
    Initializes a new instance of the C1TreeViewColumnMouseEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal button As MouseButtons, _
       ByVal clicks As Integer, _
       ByVal x As Integer, _
       ByVal y As Integer, _
       ByVal delta As Integer, _
       ByVal columnIndex As Integer _
    )
    public C1TreeViewColumnMouseEventArgs( 
       MouseButtons button,
       int clicks,
       int x,
       int y,
       int delta,
       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