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


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

    Parameters

    column1
    The first column that is swapped during sorting.
    column2
    The second column that is swapped during sorting.
    See Also