Enum GridSelectionReason
Defines the GridSelectionReason.A GridSelectionReason is used by GridSelectionChangingEventArgs to give a hint about the current state of the user action and reason for this event (mouse, keyboard or programmatic).
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public enum GridSelectionReason
Fields
Name | Description |
---|---|
ArrowKey | Indicates user is moving current cell with arrow keys. |
CancelMode | Indicates current operation was canceled. |
Clear | Indicates a Clear() call, e.g. when user hit Escape-key. |
MouseDown | Indicates user pressed mouse down. |
MouseMove | Indicates user is moving mouse. |
MouseUp | Indicates user released mouse. |
SelectRange | Indicates a SelectRange(GridRangeInfo, Boolean) call. |
SetCurrentCell | Indicates a MoveTo(Int32, Int32, GridSetCurrentCellOptions, Boolean) call. |