DataObjects.Count Property

Definition

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

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

Property Value

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 &lt; thisXDocument.DataObjects.<span class="label">Count</span>; i++)
 {
 DataObject thisDataAdapter = thisXDocument.DataObjects[i];
 thisXDocument.UI.Alert("DataObject name: " + thisDataAdapter.Name);
 }

Applies to