// Insert a character string at cursor position
EDT_ControlName = Left(EDT_ControlName, EDT_ControlName..Cursor) + ...
" is called " + Right(EDT_ControlName, EDT_ControlName..Cursor)
Syntax
Finding out the position of the input cursor Hide the details
<Current value> = <Control used>..Cursor
Modifying the position of the input cursor Hide the details
<Control used>..Cursor = <New value>
Remarks
Limit: Modifying the position of the input cursor
The position of the input cursor can be modified only if the control is currently in edit. If the control is not currently in edit, ..Cursor returns 0.