op.annots.duplicate
From PDF XChange PDF SDK
(Automatic page editing by robot) |
(→Sample) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{#customTitle:op.annots.duplicate}} | {{#customTitle:op.annots.duplicate}} | ||
{{#parentPage:PXV:Operations|op.annots.duplicate|operation}} | {{#parentPage:PXV:Operations|op.annots.duplicate|operation}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
== Overview == | == Overview == | ||
− | The operation | + | The operation allows to create duplicates from the annotations. |
== Parameters == | == Parameters == | ||
Line 16: | Line 15: | ||
| class="op_param_name" | Input | | class="op_param_name" | Input | ||
| style="text-align:center" | Array | | style="text-align:center" | Array | ||
− | | Array of <code>IUnknown</code>-based objects. | + | | Array of <code>IUnknown</code>-based objects containing the [[PXV:IPXC_Annotation|IPXC_Annotation]] objects that need to be duplicated. Note that all of the annotations must belong to one document. |
|- | |- | ||
| class="op_param_name" | Output | | class="op_param_name" | Output | ||
| style="text-align:center;" | Array | | style="text-align:center;" | Array | ||
− | | Array of <code>IUnknown</code>-based objects. | + | | Array of <code>IUnknown</code>-based objects containing the [[PXV:IPXC_Document|IPXC_Document]] which the annotations were duplicated from. Not yet implemented. |
|- | |- | ||
| class="op_param_name" | [[PXV:op_annots_duplicate_Options|Options]] | | class="op_param_name" | [[PXV:op_annots_duplicate_Options|Options]] | ||
Line 26: | Line 25: | ||
| Dictionary with options of the operation. | | Dictionary with options of the operation. | ||
|} | |} | ||
+ | |||
+ | == Sample == | ||
+ | <pre class="brush:c#">//C# | ||
+ | private void DuplicateAnnotation(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst, PDFXEdit.IPXC_Annotation Annotation) | ||
+ | { | ||
+ | int nID = Inst.Str2ID("op.annots.duplicate", false); | ||
+ | PDFXEdit.IOperation Op = Inst.CreateOp(nID); | ||
+ | PDFXEdit.ICabNode input = Op.Params.Root["Input"]; | ||
+ | input.Add().v = Annotation; | ||
+ | PDFXEdit.ICabNode options = Op.Params.Root["Options"]; | ||
+ | options["NumberOfDuplicates"].v = 3; | ||
+ | options["VOffset"].v = 10; | ||
+ | options["PageOffset"].v = 1; | ||
+ | Op.Do(); | ||
+ | } | ||
+ | </pre> |
Latest revision as of 06:29, 15 April 2016
Overview
The operation allows to create duplicates from the annotations.
Parameters
Name | Type | Description |
---|---|---|
Input | Array | Array of IUnknown -based objects containing the IPXC_Annotation objects that need to be duplicated. Note that all of the annotations must belong to one document.
|
Output | Array | Array of IUnknown -based objects containing the IPXC_Document which the annotations were duplicated from. Not yet implemented.
|
Options | Dictionary | Dictionary with options of the operation. |
Sample
//C# private void DuplicateAnnotation(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst, PDFXEdit.IPXC_Annotation Annotation) { int nID = Inst.Str2ID("op.annots.duplicate", false); PDFXEdit.IOperation Op = Inst.CreateOp(nID); PDFXEdit.ICabNode input = Op.Params.Root["Input"]; input.Add().v = Annotation; PDFXEdit.ICabNode options = Op.Params.Root["Options"]; options["NumberOfDuplicates"].v = 3; options["VOffset"].v = 10; options["PageOffset"].v = 1; Op.Do(); }