DesignerActionListCollection Constructors

Definition

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

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

Applies to