DataObjects Property

Microsoft Office InfoPath

A read-only property that returns a reference to the DataObjects collection that is associated with a Microsoft Office InfoPath 2003 form.

expression.DataObjects

expression    Required. An expression that returns a reference to an XDocument object.

Security Level

2: Can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Remarks

The DataObjects collection provides programmatic access to a form's secondary data sources. Each secondary data source is contained in a DataObject object within the DataObjects collection.

Example

In the following example, the DataObjects property of the XDocument object is used to set a reference to the CityList secondary data source:

var objDataObject;
objDataObject = XDocument.DataObjects("CityList");