Sdílet prostřednictvím


Error.Node-Eigenschaft

Ruft einen Verweis auf den XML-DOM-Knoten (Document Object Model) des einem Formular zugrunde liegenden XML-Dokuments ab, das einem ErrorObject-Objekt zugeordnet ist.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
<DispIdAttribute(1)> _
ReadOnly Property Node As IXMLDOMNode
'Usage
Dim instance As Error
Dim value As IXMLDOMNode

value = instance.Node
[DispIdAttribute(1)] 
IXMLDOMNode Node { get; }

Hinweise

Mithilfe der Node-Eigenschaft können Sie auf alle Eigenschaften und Methoden zugreifen, die das XML-DOM-Knotenobjekt bereitstellt.

Beispiel

ErrorObject er = thisXDocument.Errors[0];
IXMLDOMNode myNode = er.Node;
thisXDocument.UI.Alert("this is the error node: " + myNode.text);

Siehe auch

Referenz

Error-Schnittstelle
Error-Member
Microsoft.Office.Interop.InfoPath-Namespace