Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / RowsSwappedEventArgs Class / RowsSwappedEventArgs Constructor
The first row that is swapped during sorting.
The second row that is swapped during sorting.


In This Topic
    RowsSwappedEventArgs Constructor
    In This Topic
    Initializes a new instance of the RowsSwappedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal row1 As Integer, _
       ByVal row2 As Integer _
    )
    'Usage
     
    Dim row1 As Integer
    Dim row2 As Integer
     
    Dim instance As New RowsSwappedEventArgs(row1, row2)
    public RowsSwappedEventArgs( 
       int row1,
       int row2
    )

    Parameters

    row1
    The first row that is swapped during sorting.
    row2
    The second row that is swapped during sorting.
    See Also