_XDocument4.DOM Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene una referencia al documento XML subyacente de un formulario de un modelo de objetos de documento (DOM) XML.
public:
property Microsoft::Office::Interop::InfoPath::SemiTrust::IXMLDOMDocument ^ DOM { Microsoft::Office::Interop::InfoPath::SemiTrust::IXMLDOMDocument ^ get(); };
public Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMDocument DOM { get; }
member this.DOM : Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMDocument
Public ReadOnly Property DOM As IXMLDOMDocument
Valor de propiedad
Implementaciones
Ejemplos
// 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.<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 user
employeesDA.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 DOM
string 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 user
employeesDA.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();
Comentarios
DOM es una propiedad clave del objeto XDocument que permite tener acceso y manipular mediante programación el código XML de origen de un formulario. Una vez establecida una referencia al XML DOM, que contiene los datos XML de origen del formulario, puede usar cualquiera de las propiedades y los métodos admitidos por el XML DOM.
Importante: Solo se puede acceder a este miembro mediante formularios que se ejecutan en el mismo dominio que el formulario abierto actualmente o mediante formularios a los que se han concedido permisos entre dominios.