次の方法で共有


DesignerActionListCollection.AddRange メソッド

定義

指定した一連の DesignerActionList オブジェクトを現在のコレクションに追加します。

オーバーロード

名前 説明
AddRange(DesignerActionList[])

指定した DesignerActionList 配列の要素を現在のコレクションの末尾に追加します。

AddRange(DesignerActionListCollection)

指定した DesignerActionListCollection の要素を現在のコレクションの末尾に追加します。

AddRange(DesignerActionList[])

ソース:
DesignerActionListCollection.cs
ソース:
DesignerActionListCollection.cs
ソース:
DesignerActionListCollection.cs
ソース:
DesignerActionListCollection.cs
ソース:
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)

ソース:
DesignerActionListCollection.cs
ソース:
DesignerActionListCollection.cs
ソース:
DesignerActionListCollection.cs
ソース:
DesignerActionListCollection.cs
ソース:
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 メソッドを一連の呼び出しを行います。

こちらもご覧ください

適用対象