deltext


Purpose
Delete a part of a text.
Synopsis
procedure deltext(txt:text, i1:integer, i2:integer)
Arguments
txt 
A text object
i1 
Starting position of the region to delete
i2 
End position of the region to delete
Example
The following:
t:=text("abcdefgh")
deltext(t,3,7) 
writeln(t) 
produces this output:
abh
Related topics
cuttext, inserttext, pastetext, copytext


If you have any comments or suggestions about these pages, please send mail to docs@dashoptimization.com.