GlobalTypeCollection Constructors

Definition

Overloads

GlobalTypeCollection()

Creates a strongly-typed collection of global objects.

GlobalTypeCollection(GlobalType[])

Creates a strongly-typed collection of global objects.

GlobalTypeCollection(GlobalTypeCollection)

Creates a strongly-typed collection of global objects.

GlobalTypeCollection(GlobalType[], Boolean)

Creates a strongly-typed collection of global objects.

GlobalTypeCollection(GlobalTypeCollection, Boolean)

Creates a strongly-typed collection of global objects.

GlobalTypeCollection()

Creates a strongly-typed collection of global objects.

public:
 GlobalTypeCollection();
public:
 GlobalTypeCollection();
 GlobalTypeCollection();
public GlobalTypeCollection ();
Public Sub New ()

Applies to

GlobalTypeCollection(GlobalType[])

Creates a strongly-typed collection of global objects.

public:
 GlobalTypeCollection(cli::array <Microsoft::VisualStudio::Shell::Design::GlobalType ^> ^ items);
public GlobalTypeCollection (Microsoft.VisualStudio.Shell.Design.GlobalType[] items);
new Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection : Microsoft.VisualStudio.Shell.Design.GlobalType[] -> Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection
Public Sub New (items As GlobalType())

Parameters

items
GlobalType[]

The objects added to the collection in this overloaded constructor.

Applies to

GlobalTypeCollection(GlobalTypeCollection)

Creates a strongly-typed collection of global objects.

public:
 GlobalTypeCollection(Microsoft::VisualStudio::Shell::Design::GlobalTypeCollection ^ items);
public GlobalTypeCollection (Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection items);
new Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection : Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection -> Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection
Public Sub New (items As GlobalTypeCollection)

Parameters

items
GlobalTypeCollection

The objects added to the collection in this overloaded constructor.

Applies to

GlobalTypeCollection(GlobalType[], Boolean)

Creates a strongly-typed collection of global objects.

public:
 GlobalTypeCollection(cli::array <Microsoft::VisualStudio::Shell::Design::GlobalType ^> ^ items, bool readOnly);
public GlobalTypeCollection (Microsoft.VisualStudio.Shell.Design.GlobalType[] items, bool readOnly);
new Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection : Microsoft.VisualStudio.Shell.Design.GlobalType[] * bool -> Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection
Public Sub New (items As GlobalType(), readOnly As Boolean)

Parameters

items
GlobalType[]

The objects added to the collection in this overloaded constructor.

readOnly
Boolean

Indicates whether or not the collection may be subsequently modified.

Applies to

GlobalTypeCollection(GlobalTypeCollection, Boolean)

Creates a strongly-typed collection of global objects.

public:
 GlobalTypeCollection(Microsoft::VisualStudio::Shell::Design::GlobalTypeCollection ^ items, bool readOnly);
public GlobalTypeCollection (Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection items, bool readOnly);
new Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection : Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection * bool -> Microsoft.VisualStudio.Shell.Design.GlobalTypeCollection
Public Sub New (items As GlobalTypeCollection, readOnly As Boolean)

Parameters

items
GlobalTypeCollection

The objects added to the collection in this overloaded constructor.

readOnly
Boolean

Indicates whether or not the collection may be subsequently modified.

Applies to