IPXC_Pages::AddEmptyPages Method

From PDF XChange PDF SDK
Jump to: navigation, search
Line 5: Line 5:
 
{{ToReview}}
 
{{ToReview}}
  
Adds new empty pages to the [[PXV:IPXC_Document|IPXC_Document core document]].
+
Adds new empty pages to the [[PXV:IPXC_Document|core document]].
  
 
== Syntax ==
 
== Syntax ==
Line 16: Line 16:
 
== Parameters ==
 
== Parameters ==
 
;nBefore
 
;nBefore
:[in]  Select page before which the new pages will be inserted. Note that entering value which exceeds or is equal to the pages count in the [[PXV:IPXC_Document|IPXC_Document core document]] will insert new pages after the last page. Entering a value of zero (0) will place the empty pages before the first page in the document.
+
:[in]  Select page before which the new pages will be inserted. Note that entering value which exceeds or is equal to the pages count in the [[PXV:IPXC_Document|core document]] will insert new pages after the last page. Entering a value of zero (0) will place the empty pages before the first page in the document.
 
;nCount
 
;nCount
 
:[in]  Number of empty pages which will be inserted.
 
:[in]  Number of empty pages which will be inserted.

Revision as of 12:48, 21 May 2015


Adds new empty pages to the core document.

Syntax

HRESULT AddEmptyPages([in]                       ULONG                nBefore,
                      [in]                       ULONG                nCount,
                      [in]                       PXC_Rect*            mediaBox,
                      [in, defaultvalue(NULL)]   IProgressMon*        pProgress,
                      [out, defaultvalue(NULL)]  IPXC_UndoRedoData**  ppUndoData);

Parameters

nBefore
[in] Select page before which the new pages will be inserted. Note that entering value which exceeds or is equal to the pages count in the core document will insert new pages after the last page. Entering a value of zero (0) will place the empty pages before the first page in the document.
nCount
[in] Number of empty pages which will be inserted.
mediaBox
[in] Pointer to PXC_Rect containing the new pages media box's dimensions.
pProgress
[in, defaultvalue(NULL)] Pointer to IProgressMon containing the progress monitor. Note that the IPXV_Inst::ProgressMon property should be used to get the progress monitor from the instance.
ppUndoData
[out, defaultvalue(NULL)] Pointer to IPXC_UndoRedoData containing the filled Undo/Redo data if any was given to be filled.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXC_Pages.