TabControl.TabPageCollection.IList.Insert(Int32, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在集合中插入 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
参数
- valuetabPage
- Object
要插入到 TabControl.TabPageCollection 的 TabPage。
实现
例外
tabPage
不是 TabPage。
index
小于 0,或者索引大于等于 Count。
注解
此成员是显式接口成员的实现。 它只能在 TabControl.TabPageCollection 实例被强制转换为 IList 接口时使用。