Navigation: Code Documentation > RSCommon > GLists > Classes > TGCustomLinkedList > Methods
TGCustomLinkedList.Reset Method
Resets the iteration node to the head of the list.
Namespace: GLists
Delphi
public procedure Reset;
To iterate through the list:
List.Reset; // go to head of list while not List.EndOfList do begin List.Item := MyObject; List.Next; end;
•TGCustomLinkedList
•GLists