DesignerActionListCollection.AddRange Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Add(DesignerActionList)
- DesignerActionListCollection(DesignerActionList[])
- Designer Commands and the DesignerAction Object Model for Windows Forms
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
The DesignerActionListCollection 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.