DataObjects.Count property

Gets a count of the number of DataSourceObject objects contained in the DataObjectsCollection collection.

Namespace:  Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly:  Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.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

Remarks

Important

This member can be accessed without restrictions.

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);
 }

See also

Reference

DataObjects interface

DataObjects members

Microsoft.Office.Interop.InfoPath.SemiTrust namespace