IPXV_Inst::CreateOp Method
From PDF XChange PDF SDK
Line 16: | Line 16: | ||
::<code>int nOpID = pdfInst.Str2ID("op.document.printPages");</code> | ::<code>int nOpID = pdfInst.Str2ID("op.document.printPages");</code> | ||
;ppNewOp | ;ppNewOp | ||
− | :[out, retval] Returns pointer to new [[PXV:IOperation|IOperation]] object. | + | :[out, retval] Returns pointer to a new [[PXV:IOperation|IOperation]] object. |
== Return Value == | == Return Value == |
Revision as of 14:10, 24 May 2015
Creates new operation object by specified unique ID of operation.
Syntax
HRESULT CreateOp([in] LONG nOpID, [out, retval] IOperation** ppNewOp);
Parameters
- nOpID
- [in] The unique identifier of registered operation. For example, you may obtain it by:
int nOpID = pdfInst.Str2ID("op.document.printPages");
- ppNewOp
- [out, retval] Returns pointer to a new IOperation object.
Return Value
Returns S_OK if operation was successful or error code in other cases.