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


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

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

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