ApplicationEvents4_XMLValidationErrorEventHandler Delegate 

A Delegate type used to add an event handler for the XMLValidationError event. The XMLValidationError event occurs when there is a validation error in the document.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Sub Sub1(XMLNode As XMLNode)
End Sub
Dim applicationEvents4_XMLValidationErrorEventHandler1 As New ApplicationEvents4_XMLValidationErrorEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub ApplicationEvents4_XMLValidationErrorEventHandler( _
    <InAttribute()> ByVal XMLNode As XMLNode _
)
public delegate void ApplicationEvents4_XMLValidationErrorEventHandler(
    [In] XMLNode XMLNode
);
public delegate Void ApplicationEvents4_XMLValidationErrorEventHandler(
    XMLNode^ XMLNode
);
public delegate void ApplicationEvents4_XMLValidationErrorEventHandler(
    /*in*/XMLNode XMLNode
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • XMLNode
    XMLNode. The XML element that is invalid.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Interop.Word Namespace