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


In This Topic
    SelectionChanged Event (Worksheet)
    In This Topic
    Occurs when selections are changed that may require the selection area to be repainted.
    Syntax
    'Declaration
     
    Public Event SelectionChanged As EventHandler(Of SheetSelectionChangedEventArgs)
    'Usage
     
    Dim instance As Worksheet
    Dim handler As EventHandler(Of SheetSelectionChangedEventArgs)
     
    AddHandler instance.SelectionChanged, handler
    public event EventHandler<SheetSelectionChangedEventArgs> SelectionChanged
    Event Data

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

    PropertyDescription
    Gets the column index of the selection.  
    Gets the number of columns in the selection.  
    Gets the row index of the selection.  
    Gets the number of rows in the selection.  
    See Also