ToolboxCategory.IList.Insert(Int32, Object) 方法

定义

将工具插入到 ToolboxCategory 中的指定索引位置处。

 virtual void System.Collections.IList.Insert(int index, System::Object ^ value) = System::Collections::IList::Insert;
void IList.Insert (int index, object value);
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

参数

index
Int32

应插入 value 的从零开始的索引。

value
Object

要添加到集合中的工具。

实现

例外

index 对于 ToolboxCategory 集合无效。

valuenull

ToolboxCategory 是只读的,或者它具有已被超出的固定大小。

注解

ToolboxCategory 实现 IList 接口。

如果 index 等于 IList 中的项数,则将 value 追加到末尾。

在由连续的元素组成的集合(如列表)中,插入点下面的元素将下移以容纳新的元素。 如果集合具有索引,则移动的元素的索引也将更新。

适用于