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

 

Creates a new tab page with the specified 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^ text
)

Parameters

index
Type: System::Int32

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

text
Type: System::String^

The text to display in the tab page.

The Insert method allows you to create a new tab page and insert it 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: