GlobalObjectCollection Constructeurs

Définition

Surcharges

GlobalObjectCollection()

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux.

GlobalObjectCollection(GlobalObject[])

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux remplie initialement par un tableau d'objets globaux.

GlobalObjectCollection(GlobalObjectCollection)

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux remplie initialement par le tableau items.

GlobalObjectCollection(GlobalObject[], Boolean)

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux remplie initialement par un tableau d'objets globaux.

GlobalObjectCollection(GlobalObjectCollection, Boolean)

Initialise une nouvelle instance d'objets globaux de la collection d'objets globaux spécifiée pour l'accès en lecture/écriture spécifié.

GlobalObjectCollection()

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux.

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

S’applique à

GlobalObjectCollection(GlobalObject[])

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux remplie initialement par un tableau d'objets globaux.

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

Paramètres

items
GlobalObject[]

Tableau d'objets GlobalObject pour remplir initialement la collection.

S’applique à

GlobalObjectCollection(GlobalObjectCollection)

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux remplie initialement par le tableau items.

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

Paramètres

items
GlobalObjectCollection

Collection d'objets GlobalObject à utiliser pour remplir initialement la collection.

S’applique à

GlobalObjectCollection(GlobalObject[], Boolean)

Initialise une nouvelle instance d'une collection fortement typée d'objets globaux remplie initialement par un tableau d'objets globaux.

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

Paramètres

items
GlobalObject[]

Tableau d'objets GlobalObject pour remplir initialement la collection.

readOnly
Boolean

Si la valeur est true, la collection ne peut pas être modifiée. La valeur par défaut pour readOnly si non passé est égale à false.

S’applique à

GlobalObjectCollection(GlobalObjectCollection, Boolean)

Initialise une nouvelle instance d'objets globaux de la collection d'objets globaux spécifiée pour l'accès en lecture/écriture spécifié.

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

Paramètres

items
GlobalObjectCollection

Collection d'objets à utiliser pour remplir initialement la collection.

readOnly
Boolean

Si la valeur est true, la collection ne peut pas être modifiée. La valeur par défaut pour readOnly si non passé est égale à false.

S’applique à