TabControl::TabPageCollection::Insert Method (Int32, String^, String^)

 

Creates a new tab page with the specified key and text, and inserts it into the collection at the specified index.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void Insert(
	int index,
	String^ key,
	String^ text
)

Parameters

index
Type: System::Int32

The zero-based index location where the tab page is inserted.

key
Type: System::String^

The name of the tab page.

text
Type: System::String^

The text to display on the tab page.

The Name property corresponds to the key for a TabPage in the TabControl::TabPageCollection.

The Insert method allows you to create and insert a tab page at a specified location. To add a tab page without specifying a particular position in the collection, use the Add method. If you want to add an array of items to the collection, use the AddRange method.

.NET Framework
Available since 2.0
Return to top
Show: