System.Generics.Collections.TList.Delete

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Delete(Index: Integer); inline;

C++

void __fastcall Delete(int Index);

Properties

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

Description

Remove entry at Index.

Delete removes the list entry at the given index Index.

If Index is not valid for the list, an EArgumentOutOfRangeException exception is raised.

An OnNotify event occurs indicating that an entry was removed from the list.

See Also

Code Examples