System.Classes.IInterfaceList.Insert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Insert(Index: Integer; const Item: IInterface);

C++

virtual void __fastcall Insert(int Index, const System::_di_IInterface Item) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Classes.pas
System.Classes.hpp
System.Classes IInterfaceList

Description

Inserts an interface into the list at a specified position.

Call Insert to insert an interface into the list. Item is the interface to insert, and Index indicates the position (zero-offset) where the interface should be added.

See Also