FlexGrid for WPF | ComponentOne
C1.WPF.Grid Assembly / C1.WPF.Grid Namespace / FlexGrid Class / SelectionChanged Event

In This Topic
    SelectionChanged Event (FlexGrid)
    In This Topic
    Occurs after selection changed.
    Syntax
    'Declaration
     
    Public Event SelectionChanged As EventHandler(Of GridSelectionEventArgs)
    public event EventHandler<GridSelectionEventArgs> SelectionChanged
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether the associated event should be canceled. (Inherited from C1.WPF.Grid.CancelEventArgs)
    Gets a value indicating whether the associated event is cancellable. (Inherited from C1.WPF.Grid.CancelEventArgs)
    Gets the cell range. (Inherited from C1.WPF.Grid.GridCellRangeEventArgs)
    Gets the cell range.  
    Gets the selected cells.  
    Gets the type of the cell. (Inherited from C1.WPF.Grid.GridCellRangeEventArgs)
    See Also