FNCGrid start editing

I would like to set the grid/cell into edit mode as soon it gets the focus/enter cell, but can't find the method for that. There is a grid method StopEdit() but can't find anything to start editing.


With best regards

Hi, 


To editing a cell you can use the EditCell method. If the cell is out of range, you can first navigate to or select the cell with the methods described in the other post:

  TMSFNCGrid1.SelectCell(MakeCell(45, 45));
  TMSFNCGrid1.EditCell(MakeCell(45, 45));