DesignerActionListCollection.AddRange 方法

定义

将提供的一 DesignerActionList 系列对象添加到当前集合。

重载

名称 说明
AddRange(DesignerActionList[])

将提供的 DesignerActionList 数组的元素添加到当前集合的末尾。

AddRange(DesignerActionListCollection)

将提供的 DesignerActionListCollection 元素添加到当前集合的末尾。

AddRange(DesignerActionList[])

Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs

将提供的 DesignerActionList 数组的元素添加到当前集合的末尾。

public:
 void AddRange(cli::array <System::ComponentModel::Design::DesignerActionList ^> ^ value);
public:
 void AddRange(... cli::array <System::ComponentModel::Design::DesignerActionList ^> ^ value);
public void AddRange(System.ComponentModel.Design.DesignerActionList[] value);
public void AddRange(params System.ComponentModel.Design.DesignerActionList?[] value);
public void AddRange(System.ComponentModel.Design.DesignerActionList?[] value);
member this.AddRange : System.ComponentModel.Design.DesignerActionList[] -> unit
Public Sub AddRange (value As DesignerActionList())
Public Sub AddRange (ParamArray value As DesignerActionList())

参数

value
DesignerActionList[]

要添加的对象数组 DesignerActionList

例外

valuenull

注解

新元素将添加到内部列表的末尾。

验证 value 参数后,该方法 AddRange 对该方法进行一系列调用 Add 以单独添加每个元素。

另请参阅

适用于

AddRange(DesignerActionListCollection)

Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs
Source:
DesignerActionListCollection.cs

将提供的 DesignerActionListCollection 元素添加到当前集合的末尾。

public:
 void AddRange(System::ComponentModel::Design::DesignerActionListCollection ^ value);
public void AddRange(System.ComponentModel.Design.DesignerActionListCollection value);
member this.AddRange : System.ComponentModel.Design.DesignerActionListCollection -> unit
Public Sub AddRange (value As DesignerActionListCollection)

参数

例外

valuenull

注解

新元素将添加到内部列表的末尾。

验证 value 参数后,该方法 AddRange 对该方法进行一系列调用 Add 以单独添加每个元素。

另请参阅

适用于