op.bookmarks.import
From PDF XChange PDF SDK
(Automatic page editing by robot) |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{{#customTitle:op.bookmarks.import}} | {{#customTitle:op.bookmarks.import}} | ||
{{#parentPage:PXV:Operations|op.bookmarks.import|operation}} | {{#parentPage:PXV:Operations|op.bookmarks.import|operation}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
== Overview == | == Overview == | ||
− | The operation | + | The operation allows to import bookmarks into the document. |
== 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 that should contain the [[PXV:IPXC_Document|IPXC_Document]] where the bookmarks will be imported into. Note that only the first element from the array will be evaluated. |
|- | |- | ||
| 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]] where the bookmarks were imported. |
|- | |- | ||
| class="op_param_name" | [[PXV:op_bookmarks_import_Options|Options]] | | class="op_param_name" | [[PXV:op_bookmarks_import_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 ImportBookmarks(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst) | ||
+ | { | ||
+ | int nID = Inst.Str2ID("op.bookmarks.import", false); | ||
+ | PDFXEdit.IOperation Op = Inst.CreateOp(nID); | ||
+ | PDFXEdit.ICabNode input = Op.Params.Root["Input"]; | ||
+ | input.Add().v = Doc.CoreDoc; | ||
+ | PDFXEdit.ICabNode options = Op.Params.Root["Options"]; | ||
+ | PDFXEdit.IAFS_Inst fsInst = (PDFXEdit.IAFS_Inst)Inst.GetExtension("AFS"); | ||
+ | PDFXEdit.IAFS_Name impPath = fsInst.DefaultFileSys.StringToName("D:\\Bookmarks.xcbkm"); | ||
+ | options["ImportSource"].v = impPath; | ||
+ | Op.Do(); | ||
+ | } | ||
+ | </pre> |
Latest revision as of 04:53, 18 April 2016
Overview
The operation allows to import bookmarks into the document.
Parameters
Name | Type | Description |
---|---|---|
Input | Array | Array of IUnknown -based objects that should contain the IPXC_Document where the bookmarks will be imported into. Note that only the first element from the array will be evaluated.
|
Output | Array | Array of IUnknown -based objects containing the IPXC_Document where the bookmarks were imported.
|
Options | Dictionary | Dictionary with options of the operation. |
Sample
//C# private void ImportBookmarks(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst) { int nID = Inst.Str2ID("op.bookmarks.import", false); PDFXEdit.IOperation Op = Inst.CreateOp(nID); PDFXEdit.ICabNode input = Op.Params.Root["Input"]; input.Add().v = Doc.CoreDoc; PDFXEdit.ICabNode options = Op.Params.Root["Options"]; PDFXEdit.IAFS_Inst fsInst = (PDFXEdit.IAFS_Inst)Inst.GetExtension("AFS"); PDFXEdit.IAFS_Name impPath = fsInst.DefaultFileSys.StringToName("D:\\Bookmarks.xcbkm"); options["ImportSource"].v = impPath; Op.Do(); }