System.Generics.Collections.TList.First

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function First: T; inline;

C++

T __fastcall First();

Properties

Type Visibility Source Unit Parent
function public
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections TList

Description

Returns the first element in the list.

Call First to get the first element contained within the list. The element returned by the First method can be obtained by reading the Items property with a zero index.

See Also