System.IEnumerator.Current

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Current: TObject read GetCurrent;
property Current: T read GetCurrent;

C++

__property TObject* Current = {read=GetCurrent};
__property T Current = {read=GetCurrentT};

Properties

Type Visibility Source Unit Parent
property public
System.pas
System.hpp
System IEnumerator

Description

Returns the currently focused element in the container.

Current is a read-only property that gives the currently focused element in the container.

See Also