Returns the the node at the specified position in the list.
Namespace: GLists
Parameters
Index
Type: Integer
Property Value
Type: TSQNode
To iterate through the list:
Delphi
|
List.Reset; // go to head of list
while not List.EndOfList do
begin
List.Node.Item := MyObject;
List.Next;
end;
|
|