System.Generics.Collections.TList.TEnumerator.DoMoveNext

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DoMoveNext: Boolean; override;

C++

virtual bool __fastcall DoMoveNext();

Properties

Type Visibility Source Unit Parent
function protected
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections TEnumerator

Description

Moves to the next element in the container, with respect to an user-defined order.

System.Generics.Collections.TList.TEnumerator.DoMoveNext inherits from System.Generics.Collections.TEnumerator.DoMoveNext. All content below this line refers to System.Generics.Collections.TEnumerator.DoMoveNext.

Moves to the next element in the container, with respect to an user-defined order.

Implement DoMoveNext to specify the particular order in which the container is enumerated.

DoMoveNext should return True if moving to the next element in the container succeeded, or False otherwise.

See Also