de la propiedad DataObjects.Count
Obtiene un recuento del número de objetos DataSourceObject contenidos en la colección DataObjectsCollection.
Espacio de nombres: Microsoft.Office.Interop.InfoPath.SemiTrust
Ensamblado: Microsoft.Office.Interop.InfoPath.SemiTrust (en Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Sintaxis
'Declaración
ReadOnly Property Count As Integer
Get
'Uso
Dim instance As DataObjects
Dim value As Integer
value = instance.Count
int Count { get; }
Valor de propiedad
Tipo: System.Int32
Comentarios
Importante
Se puede acceder a este miembro sin restricciones.
Ejemplos
En el ejemplo siguiente, se utiliza la propiedad Count en un bucle For para recorrer en iteración la colección de objetos DataObject y mostrar una alerta que indique el nombre de cada objeto DataObject asociado al formulario:
for (int i=0; i < thisXDocument.DataObjects.Count; i++)
{
DataObject thisDataAdapter = thisXDocument.DataObjects[i];
thisXDocument.UI.Alert("DataObject name: " + thisDataAdapter.Name);
}
Vea también
Referencia
Espacio de nombres Microsoft.Office.Interop.InfoPath.SemiTrust