op.document.removeBatesNumbering

From PDF XChange PDF SDK
Revision as of 07:46, 20 April 2016 by Palamar (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Overview

The operation allows to remove Bates Numbering from the document.

Parameters

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

Sample

//C#
private void RemoveAllBatesNumbering(PDFXEdit.IPXV_Document Doc, PDFXEdit.IPXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.document.removeBatesNumbering", false);
	PDFXEdit.IOperation Op = Inst.CreateOp(nID);
	var input = Op.Params.Root["Input"];
	input.v = Doc.CoreDoc;
	Op.Do();
}