Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / ColumnsSwapped Event


In This Topic
    ColumnsSwapped Event
    In This Topic
    Occurs when two columns are swapped during sorting.
    Syntax
    'Declaration
     
    Public Event ColumnsSwapped As EventHandler(Of ColumnsSwappedEventArgs)
    'Usage
     
    Dim instance As Worksheet
    Dim handler As EventHandler(Of ColumnsSwappedEventArgs)
     
    AddHandler instance.ColumnsSwapped, handler
    public event EventHandler<ColumnsSwappedEventArgs> ColumnsSwapped
    Event Data

    The event handler receives an argument of type ColumnsSwappedEventArgs containing data related to this event. The following ColumnsSwappedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the first column that is swapped during sorting.  
    Gets the second column that is swapped during sorting.  
    See Also