op.document.resizePages

From PDF XChange PDF SDK
Jump to: navigation, search
(Sample)
(Sample)
 
(3 intermediate revisions by 2 users not shown)
Line 27: Line 27:
  
 
== Sample ==
 
== Sample ==
<pre class="brush:cpp">//C#
+
<pre class="brush:c#">//C#
private void ResizePageToA2(PDFXEdit.IPXV_Document pDoc, PDFXEdit.PXV_Inst pInst)
+
private void ResizePageToA2(PDFXEdit.IPXV_Document Doc, PDFXEdit.PXV_Inst Inst)
 
{
 
{
if (pDoc == null)
+
int nID = Inst.Str2ID("op.document.resizePages", false);
return;
+
PDFXEdit.IOperation Op = Inst.CreateOp(nID);
int nID = pInst.Str2ID("op.document.resizePages", false);
+
PDFXEdit.ICabNode input = Op.Params.Root["Input"];
PDFXEdit.IOperation pOp = pInst.CreateOp(nID);
+
input.v = Doc;
PDFXEdit.ICabNode input = pOp.Params.Root["Input"];
+
PDFXEdit.ICabNode options = Op.Params.Root["Options"];
input.v = pDoc;
+
PDFXEdit.ICabNode options = pOp.Params.Root["Options"];
+
 
options["PaperType"].v = 1; //Standard values table
 
options["PaperType"].v = 1; //Standard values table
 
options["StdPaperIndex"].v = 2; //A2
 
options["StdPaperIndex"].v = 2; //A2
pOp.Do();
+
Op.Do();
 
}
 
}
 
</pre>
 
</pre>

Latest revision as of 07:49, 20 April 2016


Overview

The operation allows to change pages media box's values with or without scaling of the pages contents.

Parameters

Name Type Description
Input IUnknown IUnknown-based object containing the IPXC_Document which pages will have their media box changed.
Output IUnknown IUnknown-based object containing the IPXC_Document which pages had their media box changed.
Options Dictionary Dictionary with options of the operation.

Sample

//C#
private void ResizePageToA2(PDFXEdit.IPXV_Document Doc, PDFXEdit.PXV_Inst Inst)
{
	int nID = Inst.Str2ID("op.document.resizePages", 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["PaperType"].v = 1; //Standard values table
	options["StdPaperIndex"].v = 2; //A2
	Op.Do();
}