API:Data.Bind.Components.TCollectionEnumerator.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 public
Data.Bind.Components.pas
Data.Bind.Components.hpp
Data.Bind.Components TCollectionEnumerator

Description

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

Data.Bind.Components.TCollectionEnumerator.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