TabControl.TabPageCollection.IList.Insert(Int32, Object) Method      
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts a TabPage control into the collection.
This API supports the product infrastructure and is not intended to be used directly from your code.
 virtual void System.Collections.IList.Insert(int index, System::Object ^ value) = System::Collections::IList::Insert;
	 virtual void System.Collections.IList.Insert(int index, System::Object ^ tabPage) = System::Collections::IList::Insert;
	void IList.Insert(int index, object value);
	void IList.Insert(int index, object tabPage);
	void IList.Insert(int index, object? tabPage);
	abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
	abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
	Sub Insert (index As Integer, value As Object) Implements IList.Insert
	Sub Insert (index As Integer, tabPage As Object) Implements IList.Insert
	Parameters
- valuetabPage
 - Object
 
The TabPage to insert into the TabControl.TabPageCollection.
Implements
Exceptions
tabPage is not a TabPage.
index is less than 0, or index is greater than or equal to Count.
Remarks
This member is an explicit interface member implementation. It can be used only when the TabControl.TabPageCollection instance is cast to an IList interface.