IIXC_Page::Clone Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 2: Line 2:
 
{{#customTitle:IIXC_Page::Clone Method}}
 
{{#customTitle:IIXC_Page::Clone Method}}
 
{{#parentPage:PXV:IIXC_Page|Clone Method|method}}
 
{{#parentPage:PXV:IIXC_Page|Clone Method|method}}
{{ToWrite}}
+
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
The method creates an exact copy of a whole page or a specified rectangular area of the page.
  
 
== Syntax ==
 
== Syntax ==
Line 13: Line 13:
 
== Parameters ==
 
== Parameters ==
 
;pRect
 
;pRect
:[in, defaultvalue(NULL)]  Pointer to RECT.
+
:[in, defaultvalue(NULL)]  Pointer to RECT structure which defines the rectangular area of the page page which will be cloned. If this parameter is NULL, the entire page will be cloned.
 
;ppClone
 
;ppClone
:[out, retval]  Pointer to [[PXV:IIXC_Page|IIXC_Page]].
+
:[out, retval]  Pointer to the variable where [[PXV:IIXC_Page|IIXC_Page]] of cloned page will be stored.
  
 
== Return Value ==
 
== Return Value ==
Line 21: Line 21:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IIXC_Page|IIXC_Page]].
+
:[[PXV:IIXC_Page|IIXC_Page]].

Revision as of 07:35, 29 April 2015


The method creates an exact copy of a whole page or a specified rectangular area of the page.

Syntax

HRESULT Clone([in, defaultvalue(NULL)]  RECT*        pRect,
              [out, retval]             IIXC_Page**  ppClone);

Parameters

pRect
[in, defaultvalue(NULL)] Pointer to RECT structure which defines the rectangular area of the page page which will be cloned. If this parameter is NULL, the entire page will be cloned.
ppClone
[out, retval] Pointer to the variable where IIXC_Page of cloned page will be stored.

Return Value

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

See Also

IIXC_Page.