op.pdfNamedDests.insert

From PDF XChange PDF SDK
Jump to: navigation, search
 
Line 25: Line 25:
 
| Dictionary with options of the operation.
 
| Dictionary with options of the operation.
 
|}
 
|}
 +
 +
== Sample ==
 +
<pre class="brush:c#">//C#
 +
private void InsertNamedDestination(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
 +
{
 +
int nID = Inst.Str2ID("op.pdfNamedDests.insert", false);
 +
PDFXEdit.IOperation Op = Inst.CreateOp(nID);
 +
var input = Op.Params.Root["Input"];
 +
input.Add().v = Doc.CoreDoc;
 +
PDFXEdit.ICabNode options = Op.Params.Root["Options"];
 +
options["Name"].v = "New Named Destination";
 +
PDFXEdit.ICabNode dest = options["Dest"];
 +
dest["Page"].v = 0;
 +
Op.Do();
 +
}
 +
</pre>

Latest revision as of 07:16, 21 April 2016


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

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