Click or drag to resize
ParamExcelLikeCurrentCell Property
Gets or sets the default Objective Grid or Excel-like behavior of the current cell.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
[DefaultValueAttribute(false)]
public bool ExcelLikeCurrentCell { get; set; }

Property Value

Type: Boolean
This property lets the user choose between default Objective Grid and Excel-like behavior of the current cell.
Remarks
Excel-like current cell will force the following behavior:
  • The grid will mark the current cell as selected range whenever you move the current cell.
  • When you start typing into the current cell, the selection frame will stay around the cell.
  • Whenever you move the current cell with the arrow keys, all selected ranges will be cleared out. Only when you move the current cell inside a selected range of cells, the selection will not be reset.
Note Note
It is recommended that you also enable SyncCurrentCell and ExcelLikeSelectionFrame" if you enable ExcelLikeCurrentCell.
See Also