Kamlesh,
What is that you want to do? Do you want the cell to be non-editable.In case you want the cell/column to be non-editable or read only, then you can set the column/cell's Locked property to True.
FpSpread1.ActiveSheet.Columns(1).Locked = True
FpSpread1.ActiveSheet.Cells(1,1).Locked=True
In case you want to start editing upon pressing the keys 1-10, you can map the NumPad0-NumPad9 in your above snippet. E.g.
Dim im As New FarPoint.Win.Spread.InputMap
im = FpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused)
im.Put(New FarPoint.Win.Spread.Keystroke(Keys.NumPad0, Keys.None), FarPoint.Win.Spread.SpreadActions.StartEditing)
Thanks
Suresh Singh Dasila
GrapeCity FarPoint