DELETES THE ITEM AT LINE L OF THE SYSTEM OBJECT NUMBER N
ACTION
The command ITEM_DELETE N,L deletes the line (item) number L of the system object designated by its number N.
The system object is of type : MEMO, MEMO_RICH, COMBO, LIST, DLIST, SYNEDIT.
Remark: the first line has the number 1.
SYNTAX:
ITEM_DELETE N,L
USE ERROR EXAMPLE
rem create a LIST
list 1
rem fill the LIST with 2 lines
item_add 1,"This is line 1"
item_add 1,"This is line 2"
rem wait for 1 second
wait 1000
rem delete the line at second position
item_delete 1,2
ITEM_DELETE
ITEM_DELETE N,L
SEE ALSO
MEMO
MEMO_RICH
COMBO
LIST
DLIST
SYNEDIT
FILE_ADD
ITEM_ADD
ITEM_INSERT
ITEM_SELECT
ITEM_READ$()
ITEM_INDEX$()
ITEM_INDEX()