Error.Node Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nœud DOM (Document Object Model) XML du document XML sous-jacent d’un formulaire associé à un ErrorObject objet .
public:
property Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNode ^ Node { Microsoft::Office::Interop::InfoPath::Xml::IXMLDOMNode ^ get(); };
public Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode Node { get; }
member this.Node : Microsoft.Office.Interop.InfoPath.Xml.IXMLDOMNode
Public ReadOnly Property Node As IXMLDOMNode
Valeur de propriété
Exemples
ErrorObject er = thisXDocument.Errors[0];
IXMLDOMNode myNode = er.<span class="label">Node</span>;
thisXDocument.UI.Alert("this is the error node: " + myNode.text);
Remarques
À l'aide de la propriété Node, vous pouvez accéder à toutes les propriétés et méthodes fournies par l'objet nœud DOM XML.