Data.Bind.Components.TCollectionEnumerator.DoMoveNext

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.Bind.Components.pas
Data.Bind.Components.hpp
Unit: Data.Bind.Components
Parent: TCollectionEnumerator

Delphi

function DoMoveNext: Boolean; override;

C++

virtual bool __fastcall DoMoveNext();

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