op.document.deletePages

From PDF XChange PDF SDK
Jump to: navigation, search


Overview

The operation allows to delete pages.

Parameters

Name Type Description
Input IUnknown Specifies an IPXC_Document that will have it's pages deleted.
Output IUnknown Specifies an IPXC_Document that had it's pages deleted.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void DeletePages(PDFXEdit.IPXV_Document Doc, PDFXEdit.PXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.document.deletePages", false);
	PDFXEdit.IOperation Op = Inst.CreateOp(nID);
	PDFXEdit.ICabNode input = Op.Params.Root["Input"];
	input.v = Doc;
	PDFXEdit.ICabNode options = Op.Params.Root["Options"];
	options["PagesRange.Type"].v = "Exact";
	options["PagesRange.Text"].v = "1-3"; //Select pages range that will be deleted from the document
	Op.Do();
}