INSERTS THE TEXT T$ FROM POSITION P IN THE SYSTEM OBJECT NUMBER N
ACTION
The command TEXT_INSERT N,P,T$ inserts the text T$ from position P (that is from the P-th character) in the system object number N.
The system object is of type : EDIT, MEMO, COMBO, SPIN, MEMO_RICH, SYNEDIT.
SYNTAX:
TEXT_INSERT N,P,T$
USE ERROR EXAMPLE
rem create an EDIT
edit 1
rem display a text
text 1,"Helrld"
wait 1000
rem insert text from the 4th character
text_insert 1,4,"lo wo"
TEXT_INSERT
TEXT_INSERT N,P,T$
SEE ALSO
EDIT
MEMO
COMBO
SPIN
MEMO_RICH
SYNEDIT
SELECT_READ$()
TEXT_DELETE