DocumentEvents2_XMLAfterInsertEventHandler Delegate

A Delegate type used to add an event handler for the XMLAfterInsert event. The XMLAfterInsert event occurs when a user adds a new XML element to a document.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
<ComVisibleAttribute(False)> _
Public Delegate Sub DocumentEvents2_XMLAfterInsertEventHandler ( _
    NewXMLNode As XMLNode, _
    InUndoRedo As Boolean _
)
'Usage
Dim instance As New DocumentEvents2_XMLAfterInsertEventHandler(AddressOf HandlerMethod)
[ComVisibleAttribute(false)]
public delegate void DocumentEvents2_XMLAfterInsertEventHandler(
    XMLNode NewXMLNode,
    bool InUndoRedo
)

Parameters

  • InUndoRedo
    Type: System.Boolean
    Boolean . True indicates the action was performed using the Undo or Redo feature in Microsoft Word.

Remarks

If the InUndoRedo parameter is True, never change the XML in a document while the XMLAfterInsert and XMLBeforeDelete events are running.

If the InUndoRedo parameter is False, you can insert and delete the XML in the document, but be careful that the XMLAfterInsert and XMLBeforeDelete events will not try to cancel each other out, causing an infinite loop. You can prevent infinite loops by using a global Boolean variable and check for that at the beginning of the error handler.

See Also

Reference

Microsoft.Office.Interop.Word Namespace