Enum GridSetCurrentCellOptions
Defines options for the MoveTo(Int32, Int32, GridSetCurrentCellOptions, Boolean) method call.
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
[Flags]
public enum GridSetCurrentCellOptions
Fields
Name | Description |
---|---|
BeginEndUpdate | Sandwich current cell movement with a BeginUpdate / EndUpdate method call pair to reduce flickering. |
ForceRefresh | Force new current cell to be redrawn. |
NoActivate | Do not active new current cell. Only store row and column index. |
None | No special options. |
NoSelectRange | Do not give current cell a range selection (when using Excel-like current cell). |
NoSetFocus | Do not set focus on text box in new current cell, ignoring ActivateCurrentCellBehavior. |
NoSyncCurrentCell | Do not synchronize current cell among grid views showing the same model, ignoring ShouldSynchronizeCurrentCell. |
ScrollInView | Scroll new current cell into view. |
SetFocus | Try to set focus on text box in new current cell, ignoring ActivateCurrentCellBehavior. |