IIXC_Page::Clone Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 7: Line 7:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Clone([in, defaultvalue(NULL)]  RECT*        pRect,
+
<pre class="brush:cpp;gutter:false">HRESULT Clone([in, defaultvalue(NULL)]  RECT*        stRect,
               [out, retval]            IIXC_Page**  ppClone);</pre>
+
               [out, retval]            IIXC_Page**  pClone);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pRect
+
;stRect
 
:[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.
 
:[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
+
;pClone
 
:[out, retval]  Pointer to the variable where the [[PXV:IIXC_Page|IIXC_Page]] pointer of the cloned page will be stored.
 
:[out, retval]  Pointer to the variable where the [[PXV:IIXC_Page|IIXC_Page]] pointer of the cloned page will be stored.
  

Revision as of 02:08, 4 June 2015

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

Syntax

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

Parameters

stRect
[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.
pClone
[out, retval] Pointer to the variable where the IIXC_Page pointer of the cloned page will be stored.

Return Value

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

See Also

IIXC_Page