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)
 
(One intermediate revision by the same user not shown)
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*       nTypes,
 
                                 [in]          ULONG        nCount,
 
                                 [in]          ULONG        nCount,
 
                                 [out]          LONG*        nIndex,
 
                                 [out]          LONG*        nIndex,
Line 14: Line 14:
  
 
== Parameters ==
 
== Parameters ==
;Types
+
;nTypes
 
:[in]  Pointer to ULONG.
 
:[in]  Pointer to ULONG.
;Count
+
;nCount
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
;Index
+
;nIndex
 
:[out]  Pointer to LONG.
 
:[out]  Pointer to LONG.
;Page
+
;pPage
 
:[out, retval]  Pointer to [[PXV:IIXC_Page|IIXC_Page]].
 
:[out, retval]  Pointer to [[PXV:IIXC_Page|IIXC_Page]].
  

Latest revision as of 03:16, 15 June 2015


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

Syntax

HRESULT Page_CreateFromClipboard([in]           ULONG*       nTypes,
                                 [in]           ULONG        nCount,
                                 [out]          LONG*        nIndex,
                                 [out, retval]  IIXC_Page**  pPage);

Parameters

nTypes
[in] Pointer to ULONG.
nCount
[in] Value of ULONG.
nIndex
[out] Pointer to LONG.
pPage
[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