DesignerActionListCollection.AddRange Method

Definition

Adds the supplied series of DesignerActionList objects to the current collection.

Overloads

AddRange(DesignerActionList[])

Adds the elements of the supplied DesignerActionList array to the end of the current collection.

AddRange(DesignerActionListCollection)

Adds the elements of the supplied DesignerActionListCollection to the end of the current collection.

AddRange(DesignerActionList[])

Adds the elements of the supplied DesignerActionList array to the end of the current collection.

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 (System.ComponentModel.Design.DesignerActionList?[] value);
public void AddRange (params 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())

Parameters

value
DesignerActionList[]

The array of DesignerActionList objects to add.

Exceptions

value is null.

Remarks

The new elements are added to the end of the internal list.

After validating the value parameter, the AddRange method makes a series of calls to the Add method to individually add each element.

See also

Applies to

AddRange(DesignerActionListCollection)

Adds the elements of the supplied DesignerActionListCollection to the end of the current collection.

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)

Parameters

Exceptions

value is null.

Remarks

The new elements are added to the end of the internal list.

After validating the value parameter, the AddRange method makes a series of calls to the Add method to individually add each element.

See also

Applies to