편집

다음을 통해 공유


_XDocument4.DOM Property

Definition

Gets a reference to a form's underlying XML document in the form of an XML Document Object Model (DOM).

public:
 property Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMDocument ^ DOM { Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMDocument ^ get(); };
public Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMDocument DOM { get; }
member this.DOM : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMDocument
Public ReadOnly Property DOM As IXMLDOMDocument

Property Value

Returns IXMLDOMDocument.

Implements

DOM

Examples

// Retrieve the Employees Adapter from the DataAdapters collection.ADOAdapter employeesDA =   (ADOAdapter)thisXDocument.DataAdapters["Employees"];// Get employee’s ID from the main DOMstring employeeID =    thisXDocument.
<span class="label">DOM</span>
.selectSingleNode("//my:field2").text;// Change the ADOAdapter’s command to retrieve the record // of the Employee's ID entered by the useremployeesDA.Command =    "select * from Employees where EmployeeID="+employeeID;// Get DataObject from the DataObjects collection and // call Query to refresh the data object.DataSourceObject employeesDO =   (DataSourceObject)thisXDocument.DataObjects["Employees"];employeesDO.Query();
// Retrieve the Employees Adapter from the DataAdapters collection.ADOAdapter employeesDA =   (ADOAdapter)thisXDocument.DataAdapters["Employees"];// Get employee’s ID from the main DOMstring employeeID =    thisXDocument.
<span class="label">DOM</span>
.selectSingleNode("//my:field2").text;// Change the ADOAdapter’s command to retrieve the record // of the Employee's ID entered by the useremployeesDA.Command =    "select * from Employees where EmployeeID="+employeeID;// Get DataObject from the DataObjects collection and // call Query to refresh the data object.DataSourceObject employeesDO =   (DataSourceObject)thisXDocument.DataObjects["Employees"];employeesDO.Query();

Remarks

A key property of the XDocument object, the DOM property allows you to programmatically access and manipulate the source XML of a form. After you have set a reference to the XML DOM, which contains the source XML data of a form, you can use any of the properties and methods that are supported by the XML DOM.

Applies to