'Declaration Public Event SelectionChanging As EventHandler(Of GridSelectionEventArgs)
public event EventHandler<GridSelectionEventArgs> SelectionChanging
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.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether the associated event should be canceled. (Inherited from C1.WPF.Grid.CancelEventArgs) |
Cancellable | Gets a value indicating whether the associated event is cancellable. (Inherited from C1.WPF.Grid.CancelEventArgs) |
CellRange | Gets the cell range. (Inherited from C1.WPF.Grid.GridCellRangeEventArgs) |
CellRanges | Gets the cell range. |
Cells | Gets the selected cells. |
CellType | Gets the type of the cell. (Inherited from C1.WPF.Grid.GridCellRangeEventArgs) |
See Also