Application.XMLValidationError event (Word)

Occurs when there is a validation error in the document.

Syntax

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

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.