ToolboxCategoryItems.IList.Insert(Int32, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将工具箱类别插入到 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
的从零开始的索引。
实现
例外
index
对于 ToolboxCategoryItems 集合无效。
value
为 null
。
此集合是只读的,或者它具有固定的大小且已超出其大小。
注解
ToolboxCategoryItems 实现 IList 接口。
如果 index
等于 IList 中的项数,则将 value
追加到末尾。
在由连续的元素组成的集合(如列表)中,插入点下面的元素将下移以容纳新的元素。 如果集合具有索引,则移动的元素的索引也将更新。