|
[This method is new in version 2.0 of Gnostice PDFtoolkit ActiveX/. NET ProPlus Edition]
The RemoveExistingDocActions method is called to remove an existing document actions for the specified trigger type.
Syntax
[VC++]
void RemoveExistingDocActions(long ATriggerType);
[CS]
public abstract new void RemoveExistingDocActions ( TxgtDocActionTriggers ATriggerType )
[VB]
Sub RemoveExistingDocActions(ATriggerType As TxgtDocActionTriggers)
|
Parameter
ATriggerType
specifies the trigger types which are to be removed. It can take any one of the values from TxgtDocActionTriggers enumeration.
Value
|
Description
|
aatBeforeDocClose
|
Action gets invoked before the document is closed.
|
aatBeforeDocSave
|
Action gets invoked before the document is saved.
|
aatAfterDocSave
|
Action gets invoked after the document is saved.
|
aatBeforeDocPrint
|
Action gets invoked before the document is printed.
|
aatAfterDocPrint
|
Action gets invoked after the document is printed.
|
|