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[])

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

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

C#
public void AddRange(System.ComponentModel.Design.DesignerActionList[] value);
C#
public void AddRange(params System.ComponentModel.Design.DesignerActionList?[] value);
C#
public void AddRange(System.ComponentModel.Design.DesignerActionList?[] value);

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

AddRange(DesignerActionListCollection)

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

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

C#
public void AddRange(System.ComponentModel.Design.DesignerActionListCollection value);

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10