IIXC_Inst::Page_CreateFromClipboard 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 creates a page from image data contained in the clipboard..
  
 
== Syntax ==
 
== Syntax ==
Line 15: Line 15:
 
== Parameters ==
 
== Parameters ==
 
;pTypes
 
;pTypes
:[in]  Pointer to UINT.
+
:[in]  Pointer to the array of standard clipboard format flags in Windows API.
 
;nCount
 
;nCount
:[in]  Value of ULONG.
+
:[in]  Value of ULONG the variable that contain size of types.
 
;pIndex
 
;pIndex
:[out]  Pointer to LONG.
+
:[out]  Pointer to LONG returned the variable that contain index of type.
 
;ppPage
 
;ppPage
 
:[out, retval]  Pointer to [[PXV:IIXC_Page|IIXC_Page]].
 
:[out, retval]  Pointer to [[PXV:IIXC_Page|IIXC_Page]].
Line 27: Line 27:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IIXC_Inst|IIXC_Inst]].
+
:[[PXV:IIXC_Inst|IIXC_Inst]]

Revision as of 01:48, 30 April 2015


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

Syntax

HRESULT Page_CreateFromClipboard([in]           UINT*        pTypes,
                                 [in]           ULONG        nCount,
                                 [out]          LONG*        pIndex,
                                 [out, retval]  IIXC_Page**  ppPage);

Parameters

pTypes
[in] Pointer to the array of standard clipboard format flags in Windows API.
nCount
[in] Value of ULONG the variable that contain size of types.
pIndex
[out] Pointer to LONG returned the variable that contain index of type.
ppPage
[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