DesignerActionListCollection.Insert(Int32, DesignerActionList) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将提供的 DesignerActionList 插入到集合中的指定位置。
public:
void Insert(int index, System::ComponentModel::Design::DesignerActionList ^ value);
public void Insert (int index, System.ComponentModel.Design.DesignerActionList value);
public void Insert (int index, System.ComponentModel.Design.DesignerActionList? value);
member this.Insert : int * System.ComponentModel.Design.DesignerActionList -> unit
Public Sub Insert (index As Integer, value As DesignerActionList)
参数
- index
- Int32
应插入 value
的从零开始的索引。
- value
- DesignerActionList
要插入到集合中的 DesignerActionList。
例外
index
小于 0 或大于当前集合中的元素计数。
注解
index
如果 参数等于 属性的值Count,则会将新元素添加到集合的末尾。
在内部, DesignerActionListCollection 类使用 来 System.Collections.ArrayList 包含其 对象的集合 DesignerActionList 。 由于列表维护连续元素,因此插入点后面的元素向下移动以适应新元素。 此重新排列更改插入点后的元素索引。