共用方式為


_XDocument3.DOM 屬性

取得格式為 XML 文件物件模型 (DOM) 的表單基礎 XML 文件參照。

**命名空間:**Microsoft.Office.Interop.InfoPath
**組件:**Microsoft.Office.Interop.InfoPath (於 microsoft.office.interop.infopath.dll 中)

語法

'宣告
<DispIdAttribute(8)> _
ReadOnly Property DOM As IXMLDOMDocument
'用途
Dim instance As _XDocument3
Dim value As IXMLDOMDocument

value = instance.DOM
[DispIdAttribute(8)] 
IXMLDOMDocument DOM { get; }

屬性值

格式為 XML 文件物件模型 (DOM) 的表單基礎 XML 文件參照。

備註

XDocument 物件的主要屬性,DOM 屬性讓您可以使用設計程式方式存取和操作表單的來源 XML。在設定包含表單來源 XML 資料的 XML DOM 參照後,即可使用 XML DOM 所支援的任何屬性及方法。

範例

// retrieve the Employees Adapter from the DataAdapters collection
ADOAdapter employeesDA=(ADOAdapter)thisXDocument.DataAdapters["Employees"];
// get employee’s ID from the main DOM
string employeeID=thisXDocument.DOM.selectSingleNode("//my:field2").text;
// Change the ADOAdapter’s command to retrieve the record of the Employee’s ID entered
// by the user
employeesDA.Command="select * from Employees where EmployeeID="+employeeID;
// get DataObject from the DataObjects collection and call Query to refresh
// the data object
DataObject employeesDO=thisXDocument.DataObjects["Employees"];
employeesDO.Query();

請參閱

參考

_XDocument3 介面
_XDocument3 成員
Microsoft.Office.Interop.InfoPath 命名空間