Share via


XDocument.DataAdapters Property

InfoPath Developer Reference

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

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.DataAdapters

expression   An expression that returns a XDocument object.

Return Value
DataAdapters

Remarks

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 DataAdapters property of the XDocument object is used to set a reference to a data adapter called "Main query":

JScript
  var objDataAdapter;
objDataAdapter = XDocument.DataAdapters("Main query");

See Also