op.document.addBatesNumbering

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 AddBatesNumbering(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
 +
{
 +
int nID = Inst.Str2ID("op.document.addBatesNumbering", false);
 +
PDFXEdit.IOperation Op = Inst.CreateOp(nID);
 +
var input = Op.Params.Root["Input"];
 +
input.v = Doc.CoreDoc;
 +
PDFXEdit.ICabNode options = Op.Params.Root["Options"];
 +
options["PagesRange.Type"].v = "All";
 +
options["CenterHeaderText"].v = "<<Bates Number#3#1#A#B>>";
 +
options["Font.Size"].v = 36;
 +
Op.Do();
 +
}
 +
</pre>

Latest revision as of 00:41, 19 April 2016


Overview

The operation allows to add Bates Numbering to the document.

Parameters

Name Type Description
Input IUnknown IUnknown-based object containing the IPXC_Document which the Bates Numbering will be added to.
Output IUnknown IUnknown-based object containing the IPXC_Document with added Bates Numbering. Not yet implemented.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void AddBatesNumbering(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.document.addBatesNumbering", false);
	PDFXEdit.IOperation Op = Inst.CreateOp(nID);
	var input = Op.Params.Root["Input"];
	input.v = Doc.CoreDoc;
	PDFXEdit.ICabNode options = Op.Params.Root["Options"];
	options["PagesRange.Type"].v = "All";
	options["CenterHeaderText"].v = "<<Bates Number#3#1#A#B>>";
	options["Font.Size"].v = 36;
	Op.Do();
}