FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / DragRowColEventArgs Class / DragRowColEventArgs Constructor
The original index of the row that was dragged by the user.
The original index of the column that was dragged by the user.
The new index of the column or row.

In This Topic
    DragRowColEventArgs Constructor
    In This Topic
    Initializes a new instance of the DragRowColEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As Integer, _
       ByVal col As Integer, _
       ByVal position As Integer _
    )
    public DragRowColEventArgs( 
       int row,
       int col,
       int position
    )

    Parameters

    row
    The original index of the row that was dragged by the user.
    col
    The original index of the column that was dragged by the user.
    position
    The new index of the column or row.
    See Also