CustomXMLPart.NodeAfterInsert Event (Office)
Occurs after a node is inserted in a CustomXMLPart object.
Syntax
expression .NodeAfterInsert(NewNode, InUndoRedo)
expression An expression that returns a CustomXMLPart object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
NewNode |
Required |
CustomXMLNode |
Corresponds to the node just added to the CustomXMLPart object. Note that this node may have children, if a subtree was just added to the document. |
InUndoRedo |
Required |
Boolean |
Returns TRUE if the node was inserted as part of an Undo/Redo action by the user. |
Example
The following example displays a message telling the user the results of inserting the node.
Sub CustomXMLParts_NodeAfterInsert(newNode As CustomXMLNode, boolInUndoRedo As Boolean)
MsgBox ("The node " & newNode.BaseName & " was just inserted.")
End Sub