Application.XMLValidationError Event
Word Developer Reference |
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.
Visual Basic for Applications |
---|
|
See Also