DataObjects.Count property
Gets a count of the number of DataSourceObject objects contained in the DataObjectsCollection collection.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)
Syntax
'Declaration
ReadOnly Property Count As Integer
Get
'Usage
Dim instance As DataObjects
Dim value As Integer
value = instance.Count
int Count { get; }
Property value
Type: System.Int32
Examples
In the following example, the Count property is used within a for loop to iterate through the collection of DataObject objects and display an alert indicating the name of each DataObject object associated with the form:
for (int i=0; i < thisXDocument.DataObjects.Count; i++)
{
DataObject thisDataAdapter = thisXDocument.DataObjects[i];
thisXDocument.UI.Alert("DataObject name: " + thisDataAdapter.Name);
}