Navigation: Code Documentation > RSCommon > GLists > Classes > TGCustomLinkedList > Properties
TGCustomLinkedList.EndOfList Property
Returns true when the last accessed node has been returned.
Namespace: GLists
Delphi
public property EndOfList: Boolean read GetEndOfList;
Property Value
Type: Boolean
To iterate through the list:
List.Reset; // go to head of list while not List.EndOfList do begin List.Item := MyObject; List.Next; end;
•GLists.TGCustomLinkedList.Next
•GLists.TGCustomLinkedList.Item[Integer]
•GLists.TGCustomLinkedList.Head
•TGCustomLinkedList
•GLists