op.pdfNamedDests.delete

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 DeleteAllNamedDestinations(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
 +
{
 +
int nID = Inst.Str2ID("op.pdfNamedDests.delete", 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"];
 +
PDFXEdit.IAUX_Inst auxInst = (PDFXEdit.IAUX_Inst)Inst.GetExtension("AUX");
 +
PDFXEdit.IUniqueStrings US = auxInst.CreateUniqueStringsList();
 +
PDFXEdit.IPXC_NameTree Tree = Doc.CoreDoc.GetNameTree("Dests");
 +
for (uint i = 0; i < Tree.Count; i++)
 +
{
 +
US.Insert(Tree.get_ItemName(i));
 +
}
 +
options["Names"].v = US;
 +
Op.Do();
 +
}
 +
</pre>

Latest revision as of 07:10, 21 April 2016


Overview

The operation allows to remove named destinations from 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 deleted from. 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 deleted from.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void DeleteAllNamedDestinations(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.pdfNamedDests.delete", 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"];
	PDFXEdit.IAUX_Inst auxInst = (PDFXEdit.IAUX_Inst)Inst.GetExtension("AUX");
	PDFXEdit.IUniqueStrings US = auxInst.CreateUniqueStringsList();
	PDFXEdit.IPXC_NameTree Tree = Doc.CoreDoc.GetNameTree("Dests");
	for (uint i = 0; i < Tree.Count; i++)
	{
		US.Insert(Tree.get_ItemName(i));
	}
	options["Names"].v = US;
	Op.Do();
}