IIXC_Page::CopyToClipboard 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 CopyToClipboard([in]                  UINT      nType,
+
<pre class="brush:cpp;gutter:false">HRESULT CopyToClipboard([in]                  ULONG    Type,
                         [in]                  RECT*    stRect,
+
                         [in]                  RECT*    Rect,
                         [in, defaultvalue(0)]  HANDLE_T  nOwner);</pre>
+
                         [in, defaultvalue(0)]  HANDLE_T  hOwner);</pre>
  
 
== Parameters ==
 
== Parameters ==

Revision as of 08:37, 12 June 2015

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

Syntax

HRESULT CopyToClipboard([in]                   ULONG     Type,
                        [in]                   RECT*     Rect,
                        [in, defaultvalue(0)]  HANDLE_T  hOwner);

Parameters

Type
[in] Value of ULONG.
Rect
[in] Pointer to RECT.
hOwner
[in, defaultvalue(0)] Value of HANDLE_T.

Return Value

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

See Also

IIXC_Page