IIXC_Inst::Page_CreateFromClipboard Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Page_CreateFromClipboard([in]          UINT*       nTypes,
+
<pre class="brush:cpp;gutter:false">HRESULT Page_CreateFromClipboard([in]          ULONG*       Types,
                                 [in]          ULONG        nCount,
+
                                 [in]          ULONG        Count,
                                 [out]          LONG*        nIndex,
+
                                 [out]          LONG*        Index,
                                 [out, retval]  IIXC_Page**  pPage);</pre>
+
                                 [out, retval]  IIXC_Page**  Page);</pre>
  
 
== Parameters ==
 
== Parameters ==

Revision as of 08:37, 12 June 2015


The method creates a page from image data contained in the clipboard..

Syntax

HRESULT Page_CreateFromClipboard([in]           ULONG*       Types,
                                 [in]           ULONG        Count,
                                 [out]          LONG*        Index,
                                 [out, retval]  IIXC_Page**  Page);

Parameters

Types
[in] Pointer to ULONG.
Count
[in] Value of ULONG.
Index
[out] Pointer to LONG.
Page
[out, retval] Pointer to IIXC_Page.

Return Value

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

See Also

IIXC_Inst