DesignerActionListCollection Constructors
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.
Initializes a new instance of the DesignerActionListCollection class.
Overloads
DesignerActionListCollection() |
Initializes a new instance of the DesignerActionListCollection class with default settings. |
DesignerActionListCollection(DesignerActionList[]) |
Initializes a new instance of the DesignerActionListCollection class with the specified panel items. |
DesignerActionListCollection()
Initializes a new instance of the DesignerActionListCollection class with default settings.
public:
DesignerActionListCollection();
public DesignerActionListCollection ();
Public Sub New ()
Remarks
The DesignerActionListCollection constructor creates an empty collection, containing zero DesignerActionList objects.
See also
- AddRange(DesignerActionList[])
- Designer Commands and the DesignerAction Object Model for Windows Forms
Applies to
DesignerActionListCollection(DesignerActionList[])
Initializes a new instance of the DesignerActionListCollection class with the specified panel items.
public:
DesignerActionListCollection(cli::array <System::ComponentModel::Design::DesignerActionList ^> ^ value);
public DesignerActionListCollection (System.ComponentModel.Design.DesignerActionList[] value);
public DesignerActionListCollection (System.ComponentModel.Design.DesignerActionList?[] value);
new System.ComponentModel.Design.DesignerActionListCollection : System.ComponentModel.Design.DesignerActionList[] -> System.ComponentModel.Design.DesignerActionListCollection
Public Sub New (value As DesignerActionList())
Parameters
- value
- DesignerActionList[]
The array of DesignerActionList objects to populate the collection.
Exceptions
value
is null
.
Remarks
The DesignerActionListCollection constructor creates a collection that contains the supplied DesignerActionList objects.
See also
- AddRange(DesignerActionList[])
- Designer Commands and the DesignerAction Object Model for Windows Forms