Vcl.Tabs.TTabList.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.Tabs.pas
Vcl.Tabs.hpp
Vcl.Tabs TTabList

Description

Inserts a tab caption to the list at the position specified by Index.

Call Insert to add the tab caption S to the list at the position specified by Index. If Index is 0, the tab caption is inserted at the beginning of the list. If Index is 1, the tab caption is placed in the second position of the list, and so on.

See Also