op.document.javaScript

From PDF XChange PDF SDK
Jump to: navigation, search
(Parameters)
 
(One intermediate revision by the same user not shown)
Line 15: Line 15:
 
| class="op_param_name" | Input
 
| class="op_param_name" | Input
 
| style="text-align:center" | Array
 
| style="text-align:center" | Array
| <code>IUnknown</code>-based object containing the [[PXV:IPXC_Document|IPXC_Document]] that will have it's JavaScript changed.
+
| Array of <code>IUnknown</code>-based objects that should contain the [[PXV:IPXC_Document|IPXC_Document]] that will have it's JavaScript changed. 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
| <code>IUnknown</code>-based object containing the [[PXV:IPXC_Document|IPXC_Document]] that had it's JavaScript changed.
+
| Array of <code>IUnknown</code>-based objects that should contain the [[PXV:IPXC_Document|IPXC_Document]] that had it's JavaScript changed. Note that only the first element from the array will be evaluated.  
 
|-
 
|-
 
| class="op_param_name" | [[PXV:op_document_javaScript_Options|Options]]
 
| class="op_param_name" | [[PXV:op_document_javaScript_Options|Options]]
Line 25: Line 25:
 
| Dictionary with options of the operation.
 
| Dictionary with options of the operation.
 
|}
 
|}
 +
 +
== Sample ==
 +
<pre class="brush:c#">//C#
 +
private void AddJavaScript(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
 +
{
 +
int nID = Inst.Str2ID("op.document.javaScript", 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.ICabNode arr = options["Array"].Add();
 +
arr["Name"].v = "New Name";
 +
arr["Script"].v = "app.alert(\"Hello!\")";
 +
Op.Do();
 +
}
 +
</pre>

Latest revision as of 02:28, 19 April 2016


Overview

The operation allows to change document's JavaScript.

Parameters

Name Type Description
Input Array Array of IUnknown-based objects that should contain the IPXC_Document that will have it's JavaScript changed. Note that only the first element from the array will be evaluated.
Output Array Array of IUnknown-based objects that should contain the IPXC_Document that had it's JavaScript changed. Note that only the first element from the array will be evaluated.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void AddJavaScript(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.document.javaScript", 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.ICabNode arr = options["Array"].Add();
	arr["Name"].v = "New Name";
	arr["Script"].v = "app.alert(\"Hello!\")";
	Op.Do();
}