Delete an item from a list, specified by its index in the list.
| Declaration | Zeolite.h | 
|---|---|
| Implementation | Zeolite.cpp | 
bool zlist_DelItemI(ZLIST hList, long index);
| Name | Type | Comment | 
|---|---|---|
| hList | ZLIST | A ZLIST handle, an item of which is to be deleted. | 
| index | long | The zero-based index of the variable to be deleted. | 
False if an error occurred, and true otherwise.
None.