op.pdfNamedDests.set
From PDF XChange PDF SDK
Line 25: | Line 25: | ||
| Dictionary with options of the operation. | | Dictionary with options of the operation. | ||
|} | |} | ||
+ | |||
+ | == Sample == | ||
+ | <pre class="brush:c#">//C# | ||
+ | private void SetNamedDestination(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst) | ||
+ | { | ||
+ | int nID = Inst.Str2ID("op.pdfNamedDests.set", false); | ||
+ | PDFXEdit.IOperation Op = Inst.CreateOp(nID); | ||
+ | var input = Op.Params.Root["Input"]; | ||
+ | input.v = Doc.CoreDoc; | ||
+ | PDFXEdit.ICabNode options = Op.Params.Root["Options"]; | ||
+ | PDFXEdit.IPXC_NameTree Tree = Doc.CoreDoc.GetNameTree("Dests"); | ||
+ | if (Tree.Count > 0) | ||
+ | { | ||
+ | options["Name"].v = Tree.get_ItemName(0); | ||
+ | PDFXEdit.ICabNode dest = options["Dest"]; | ||
+ | dest["Page"].v = 0; | ||
+ | Op.Do(); | ||
+ | } | ||
+ | } | ||
+ | </pre> |
Latest revision as of 07:24, 21 April 2016
Overview
The operation allows to change where the named destination will point to.
Parameters
Name | Type | Description |
---|---|---|
Input | Array | Array of IUnknown -based objects that should contain the IPXC_Document with the named destination that needs to be set. Note that only the first element from the array will be evaluated.
|
Output | Array | Array of IUnknown -based objects containing the IPXC_Document with newly set named destination.
|
Options | Dictionary | Dictionary with options of the operation. |
Sample
01 | //C# |
02 | private void SetNamedDestination(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst) |
03 | { |
04 | int nID = Inst.Str2ID( "op.pdfNamedDests.set" , false ); |
05 | PDFXEdit.IOperation Op = Inst.CreateOp(nID); |
06 | var input = Op.Params.Root[ "Input" ]; |
07 | input.v = Doc.CoreDoc; |
08 | PDFXEdit.ICabNode options = Op.Params.Root[ "Options" ]; |
09 | PDFXEdit.IPXC_NameTree Tree = Doc.CoreDoc.GetNameTree( "Dests" ); |
10 | if (Tree.Count > 0) |
11 | { |
12 | options[ "Name" ].v = Tree.get_ItemName(0); |
13 | PDFXEdit.ICabNode dest = options[ "Dest" ]; |
14 | dest[ "Page" ].v = 0; |
15 | Op.Do(); |
16 | } |
17 | } |