INodeChangingCallback
Overview
INodeChangingCallback is a interface in Aspose.Words FOSS for .NET.
Implement this interface if you want to receive notifications when nodes are inserted or removed in the document.
This interface provides 4 methods for working with INodeChangingCallback objects in .NET programs.
Available methods include: NodeInserted, NodeInserting, NodeRemoved, NodeRemoving.
All public members are accessible to any .NET application after installing the Aspose.Words FOSS for .NET package.
Methods
| Signature | Description |
|---|---|
NodeInserting(args: NodeChangingArgs) | Called just before a node belonging to this document is about to be inserted into another node. |
NodeInserted(args: NodeChangingArgs) | Called when a node belonging to this document has been inserted into another node. |
NodeRemoving(args: NodeChangingArgs) | Called just before a node belonging to this document is about to be removed from the document. |
NodeRemoved(args: NodeChangingArgs) | Called when a node belonging to this document has been removed from its parent. |