DOM Property (DataObject Object)

Microsoft Office InfoPath

Show All Show All

DOM Property (DataObject Object)

A read-only property that returns a reference to an XML Document Object Model (DOM) that is associated with a DataObject object.

expression.DOM

expression    Required. An expression that returns a reference to the DataObject 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 DOM property allows you to programmatically access and manipulate the source XML of a secondary data source that is represented by the DataObject object. After you have set a reference to the XML DOM, which contains the source XML data of a secondary data source, you can use any of the properties and methods that are supported by the XML DOM.

Note  To learn more about the XML DOM and all of the properties and methods that it supports, see the MSXML 5.0 SDK documentation in the Microsoft Script Editor (MSE) Help system.

Example

In the following example, the DOM property of the DataObject object is used to return all of the contents of a form's secondary data source using the xml property of the XML DOM:

    var strXML;
strXML = XDocument.DataObjects("CityList").DOM.xml;