Partager via


DataObjects.Count, propriété

Obtient le nombre d'objets DataSourceObject contenus dans la collection DataObjectsCollection.

Cette propriété n'est pas conforme à la spécification CLS.  

Espace de noms : Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly : Microsoft.Office.Interop.InfoPath.SemiTrust (dans microsoft.office.interop.infopath.semitrust.dll)

Syntaxe

<DispIdAttribute(1)> _
ReadOnly Property Count As Integer

Dim instance As DataObjects
Dim value As Integer

value = instance.Count
[DispIdAttribute(1)] 
int Count { get; }

Remarques

Important :

Ce membre est accessible sans restrictions.

Exemple

Dans l'exemple suivant, la propriété Count est utilisée dans une boucle For pour itération dans la collection d'objets DataObject et pour afficher une alerte indiquant le nom de chaque objet DataObject associé au formulaire :

for (int i=0; i < thisXDocument.DataObjects.Count; i++)
 {
 DataObject thisDataAdapter = thisXDocument.DataObjects[i];
 thisXDocument.UI.Alert("DataObject name: " + thisDataAdapter.Name);
 }

Voir aussi

Référence

DataObjects, interface
Membres DataObjects
Microsoft.Office.Interop.InfoPath.SemiTrust, espace de noms