NOP Design Home Page
Documentation
TOC/Index
Search
Downloads



AtEndOfList

Checks to see if the list pointer is at the end of the list

Sample Source

CreateList MyList
InsertBefore 1 To MyList
InsertAfter "Item Two" To MyList
SelectItem First From MyList

#Will loop until at the end of the list
While (AtEndOfList MyList) <> True
	Say CurrentItem Of MyList
	SelectItem Next From MyList
Loop

Related Function(s):
   CreateList; CurrentItem; ReplaceItem; SelectItem;

Minimum version: 4.0