op.pdfNamedDests.insert

From PDF XChange PDF SDK
Jump to: navigation, search


Overview

The operation allows inserting new named destinations into the document.

Parameters

Name Type Description
Input Array Array of IUnknown-based objects that should contain the IPXC_Document which the named destinations would be inserted into. Note that only the first element from the array will be evaluated.
Output Array Array of IUnknown-based objects containing the IPXC_Document which the named destinations were inserted into.
Options Dictionary Dictionary with options of the operation.

Sample

01//C#
02private void InsertNamedDestination(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
03{
04    int nID = Inst.Str2ID("op.pdfNamedDests.insert", false);
05    PDFXEdit.IOperation Op = Inst.CreateOp(nID);
06    var input = Op.Params.Root["Input"];
07    input.Add().v = Doc.CoreDoc;
08    PDFXEdit.ICabNode options = Op.Params.Root["Options"];
09    options["Name"].v = "New Named Destination";
10    PDFXEdit.ICabNode dest = options["Dest"];
11    dest["Page"].v = 0;
12    Op.Do();
13}