IIXC_Page::CopyToClipboard Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 5: Line 5:
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
The method copies the specified page or its rectangular area onto the clipboard.
  
 
== Syntax ==
 
== Syntax ==
Line 14: Line 14:
 
== Parameters ==
 
== Parameters ==
 
;nType
 
;nType
:[in]  Value of UINT.
+
:[in]  Specifies the data type which should be copied onto clipboard. May be a combination of the following  [[PXV:IXC_CopyClipboard|values]].
 
;pRect
 
;pRect
:[in]  Pointer to RECT.
+
:[in]  Pointer to RECT structure which defines the rectangular area of the page which should be processed. If this parameter is NULL, the entire page will be processed.
 
;hOwner
 
;hOwner
:[in, defaultvalue(0)] Value of HANDLE_T.
+
:[in, defaultvalue(0)]   Value of HANDLE_T parent window owner handle.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 06:18, 29 April 2015


The method copies the specified page or its rectangular area onto the clipboard.

Syntax

HRESULT CopyToClipboard([in]                   UINT      nType,
                        [in]                   RECT*     pRect,
                        [in, defaultvalue(0)]  HANDLE_T  hOwner);

Parameters

nType
[in] Specifies the data type which should be copied onto clipboard. May be a combination of the following values.
pRect
[in] Pointer to RECT structure which defines the rectangular area of the page which should be processed. If this parameter is NULL, the entire page will be processed.
hOwner
[in, defaultvalue(0)] Value of HANDLE_T parent window owner handle.

Return Value

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

See Also

See also IIXC_Page.