XMLValidationError Event

Microsoft Word Visual Basic

XMLValidationError Event

Occurs when there is a validation error in the document.

Private Sub object_XMLValidationError(XMLNode)

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.

XMLNode   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