IPXC_ActionHandler::CopyAction Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
Line 5: | Line 5: | ||
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT CopyAction([in] IPXC_Action* pAction, [in] IPXC_Document* pDestDoc, [in, | + | <pre class="brush:cpp;gutter:false">HRESULT CopyAction([in] IPXC_Action* pAction, [in] IPXC_Document* pDestDoc, [in, defaultvalue(NULL)] IPXC_RemapCallback* pRemap, [out, retval] IPXS_PDFVariant** ppCopy);</pre> |
== Parameters == | == Parameters == | ||
Line 13: | Line 13: | ||
:[in] Pointer to [[PXV:IPXC_Document|IPXC_Document]] containing the destination document. | :[in] Pointer to [[PXV:IPXC_Document|IPXC_Document]] containing the destination document. | ||
;''pRemap'' | ;''pRemap'' | ||
− | :[in, | + | :[in, defaultvalue(NULL)] Pointer to [[PXV:IPXC_RemapCallback|IPXC_RemapCallback]] containing the callback for page remaping. |
;''ppCopy'' | ;''ppCopy'' | ||
:[out, retval] Pointer to [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]] containing resulting copy of the action. | :[out, retval] Pointer to [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]] containing resulting copy of the action. |
Revision as of 13:01, 16 April 2015
Copies data from the source into given action.
Contents
Syntax
HRESULT CopyAction([in] IPXC_Action* pAction, [in] IPXC_Document* pDestDoc, [in, defaultvalue(NULL)] IPXC_RemapCallback* pRemap, [out, retval] IPXS_PDFVariant** ppCopy);
Parameters
- pAction
- [in] Pointer to IPXC_Action containing the source action.
- pDestDoc
- [in] Pointer to IPXC_Document containing the destination document.
- pRemap
- [in, defaultvalue(NULL)] Pointer to IPXC_RemapCallback containing the callback for page remaping.
- ppCopy
- [out, retval] Pointer to IPXS_PDFVariant containing resulting copy of the action.
Return Value
Returns S_OK if operation was successful or error code in other cases.
See Also
See also IPXC_ActionHandler.