Vcl.ComCtrls.TComboBoxExStrings.Insert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Insert(Index: Integer; const S: String); override;

C++

virtual void __fastcall Insert(int Index, const System::UnicodeString S);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TComboBoxExStrings

Description

Inserts a new item at a specified position.

Call Insert to insert a new item into the collection at a specified position. An index of 0 specifies the first position, 1 specifies the second position, and so on. Insert instantiates an item with the specified caption.

See Also