DataObjects.Count Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 < thisXDocument.DataObjects.<span class="label">Count</span>; i++)
{
DataObject thisDataAdapter = thisXDocument.DataObjects[i];
thisXDocument.UI.Alert("DataObject name: " + thisDataAdapter.Name);
}
Remarks
Important: This member can be accessed without restrictions.