DesignerActionListCollection.Insert(Int32, DesignerActionList) 方法

定义

将提供的 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 。 由于列表维护连续元素,因此插入点后面的元素向下移动以适应新元素。 此重新排列更改插入点后的元素索引。

适用于

另请参阅