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

定义

将工具箱类别插入到 ToolboxCategoryItems 集合中的指定索引位置。

 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

要插入到集合中的 Object

实现

例外

index 对于 ToolboxCategoryItems 集合无效。

valuenull

此集合是只读的,或者它具有固定的大小且已超出其大小。

注解

ToolboxCategoryItems 实现 IList 接口。

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

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

适用于