XDocument.DataObjects Property

InfoPath Developer Reference

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

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.DataObjects

expression   An expression that returns a XDocument object.

Return Value
DataObjects

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.

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.

Example

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

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

See Also