Provides data for methods of the INodeChangingCallback interface.
Shows how customize node changing with a callback.
#include <Aspose.Words.Cpp/NodeChangingArgs.h>
Public Member Functions | |
NodeChangingAction | get_Action () const |
Gets a value indicating what type of node change event is occurring. More... | |
SharedPtr< Node > | get_NewParent () const |
Gets the node's parent that will be set after the operation completes. More... | |
SharedPtr< Node > | get_Node () const |
Gets the Node that is being added or removed. More... | |
SharedPtr< Node > | get_OldParent () const |
Gets the node's parent before the operation began. More... | |
virtual const TypeInfo & | GetType () const override |
virtual bool | Is (const TypeInfo &target) const override |
Static Public Member Functions | |
static const TypeInfo & | Type () |
Aspose::Words::NodeChangingAction Aspose::Words::NodeChangingArgs::get_Action | ( | ) | const |
Gets a value indicating what type of node change event is occurring.
Shows how to use a NodeChangingCallback to monitor changes to the document tree in real-time as we edit it.
System::SharedPtr<Aspose::Words::Node> Aspose::Words::NodeChangingArgs::get_NewParent | ( | ) | const |
Gets the node's parent that will be set after the operation completes.
Shows how to use a NodeChangingCallback to monitor changes to the document tree in real-time as we edit it.
System::SharedPtr<Aspose::Words::Node> Aspose::Words::NodeChangingArgs::get_Node | ( | ) | const |
Gets the Node that is being added or removed.
Shows how customize node changing with a callback.
System::SharedPtr<Aspose::Words::Node> Aspose::Words::NodeChangingArgs::get_OldParent | ( | ) | const |
Gets the node's parent before the operation began.
Shows how to use a NodeChangingCallback to monitor changes to the document tree in real-time as we edit it.
|
overridevirtual |
Reimplemented from System::Object.
|
overridevirtual |
Reimplemented from System::Object.
|
static |