Partager via


_XDocument4.DOM - Propriété

Obtient une référence au document XML sous-jacent d'un formulaire sous la forme d'un modèle DOM (Document Object Model) XML.

Espace de noms :  Microsoft.Office.Interop.InfoPath
Assembly :  Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)

Syntaxe

'Déclaration
ReadOnly Property DOM As IXMLDOMDocument
    Get
'Utilisation
Dim instance As _XDocument4
Dim value As IXMLDOMDocument

value = instance.DOM
IXMLDOMDocument DOM { get; }

Valeur de propriété

Type : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMDocument
Cette propriété renvoie IXMLDOMDocument.

Implémentations

_XDocument3.DOM

Remarques

Propriété clé de l'objet XDocument, la propriété DOM vous permet d'accéder aux données XML source d'un formulaire par programmation et de les manipuler. Une fois que vous avez défini une référence au modèle DOM XML, qui contient les données XML source d'un formulaire, vous pouvez utiliser n'importe quelle propriété et méthode prise en charge par le modèle DOM XML.

Exemples

// Retrieve the Employees Adapter from the DataAdapters collection.ADOAdapter employeesDA =   (ADOAdapter)thisXDocument.DataAdapters["Employees"];// Get employee’s ID from the main DOMstring employeeID =    thisXDocument.
DOM
.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();

Voir aussi

Référence

_XDocument4 interface

_XDocument4 - Membres

DOM - Surcharge

Microsoft.Office.Interop.InfoPath - Espace de noms