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

 

Inserts an existing tab page 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,
	TabPage^ tabPage
)

Parameters

index
Type: System::Int32

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

tabPage
Type: System.Windows.Forms::TabPage^

The TabPage to insert in the collection.

The Insert method allows you to 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: