I have an application that uses structures which contain linked lists. When the application is first started I want to Zero the structure data and the linked lists.
However it is possible that if this is the first time the procedure to zero the structure the lists have not yet been created.
Is there a way to check to see if the list exists?
I have tried the following:
Code: Select all
If ListSize(Project\Planes()\PanelList()\PanelsBelow()) > 0
ClearList(Project\Planes()\PanelList()\PanelsBelow())
EndIf 
