TabControl.TabPageCollection.IList.Insert(Int32, Object) 方法

定义

在集合中插入 TabPage 控件。

此 API 支持产品基础结构,不能在代码中直接使用。

 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

参数

index
Int32

从零开始的索引,应在该位置插入 TabPage

valuetabPage
Object

要插入到 TabControl.TabPageCollectionTabPage

实现

例外

tabPage 不是 TabPage

index 小于 0,或者索引大于等于 Count

注解

此成员是显式接口成员的实现。 它只能在 TabControl.TabPageCollection 实例被强制转换为 IList 接口时使用。

适用于