Application.XMLValidationError Event (Word)
Occurs when there is a validation error in the document.
Syntax
Private Sub expression _XMLValidationError(XMLNode As XMLNode)
expression A variable that represents an Application object. An object of type Application that has been declared in a class module by using the WithEvents keyword. For more information about using events with the Application object, see Using Events with the Application Object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
XMLNode |
Required |
XMLNode |
The XML element that is invalid. |
Example
The following example displays an error message to the user when a node is invalid.
Private Sub Wrd_XMLValidationError(ByVal XMLNode As XMLNode)
MsgBox "The " & UCase(XMLNode.BaseName) & " element is invalid." & _
vbCrLf & XMLNode.ValidationErrorText
End Sub