SSpread.SelStart Property
The value entered in the active cell sets the starting position for the selection.
Only valid when the spreadsheet is in input mode (EditMode property is $TRUE).
Get and set the selection in combination with the SelLength property. In addition, it can be combined with the SelText property to partially replace the value in the active cell.
Example of usage
Function OnEditModeOn (e) {
/ * Set the initial position of the cursor to the beginning * /
SelStart = 0;
SelLength = 0;
}
Related Items
EditMode, SelLength, SelText properties