e.document.performSave
From PDF XChange PDF SDK
(Automatic page editing by robot) |
|||
Line 2: | Line 2: | ||
{{#customTitle:e.document.performSave}} | {{#customTitle:e.document.performSave}} | ||
{{#parentPage:PXV:PXV_Events|e.document.performSave|event}} | {{#parentPage:PXV:PXV_Events|e.document.performSave|event}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
== Overview == | == Overview == | ||
− | The event is fired | + | The event is fired just before performing the save operation of the document. The [[PXV:IEvent|IEvent]] interface should be cast to the [[PXV:IPXV_DocSaveEvent|IPXV_DocSaveEvent]] interface. |
== Parameters == | == Parameters == | ||
Line 28: | Line 27: | ||
| class="op_param_name" | Result | | class="op_param_name" | Result | ||
| style="text-align:center" | PARAM_T | | style="text-align:center" | PARAM_T | ||
− | | Specifies the result that will be used by the event sender when the event is marked as Handled. | + | | Specifies the result that will be used by the event sender when the event is marked as Handled. If the Result is '''E_NOTIMPL''' then native save will be used, else the save process must be handled by developer. |
Latest revision as of 06:06, 5 April 2017
Overview
The event is fired just before performing the save operation of the document. The IEvent interface should be cast to the IPXV_DocSaveEvent interface.
Parameters
Name | Type | Description |
---|---|---|
Param1 | PARAM_T | Not used. |
Param2 | PARAM_T | Not used. |
Handled | VARIANT_BOOL | Specifies whether the event was handled. Marking the event as handled will cause the event sender to look at the event`s result and act accordingly based on the event type. |
Result | PARAM_T | Specifies the result that will be used by the event sender when the event is marked as Handled. If the Result is E_NOTIMPL then native save will be used, else the save process must be handled by developer. |