Overview
The operation allows to add empty pages with given size and orientation into the document.
Parameters
Name
|
Type
|
Description
|
Input
|
IUnknown
|
IUnknown -based object containing the IPXC_Document where the empty pages will be added.
|
Output
|
IUnknown
|
IUnknown -based object containing the IPXC_Document where the empty pages were added.
|
Options
|
Dictionary
|
Dictionary with options of the operation.
|
Sample
02 | private void InsertEmptyPages(PDFXEdit.IPXV_Document Doc, PDFXEdit.PXV_Inst Inst) |
04 | int nID = Inst.Str2ID( "op.document.insertEmptyPages" , false ); |
05 | PDFXEdit.IOperation Op = Inst.CreateOp(nID); |
06 | PDFXEdit.ICabNode input = Op.Params.Root[ "Input" ]; |
08 | PDFXEdit.ICabNode options = Op.Params.Root[ "Options" ]; |
09 | options[ "PaperType" ].v = 2; |
10 | options[ "Count" ].v = 4; |
11 | options[ "Width" ].v = 800; |
12 | options[ "Height" ].v = 1200; |
13 | options[ "Location" ].v = 1; |
14 | options[ "Position" ].v = 0; |