IPXV_ImportConverter::CheckFormat Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 9: Line 9:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CheckFormat([in]                  IPXV_Inst*                       pInst,
+
<pre class="brush:cpp;gutter:false">HRESULT CheckFormat([in]                  IPXV_Inst*           pInst,
                     [in]                  IUnknown*                       pSrc,
+
                     [in]                  IUnknown*           pSrc,
                     [in, defaultvalue(0)]  ULONG                           nFlags,
+
                     [in, defaultvalue(0)]  ULONG               nFlags,
                     [out, retval]          PXV_ImportConverterCheckFmtRes*  pCheckResVal);</pre>
+
                     [out, retval]          PXV_FmtCheckResult*  pCheckResVal);</pre>
  
 
== Parameters ==
 
== Parameters ==
Line 22: Line 22:
 
:[in, defaultvalue(0)]  Value of ULONG.
 
:[in, defaultvalue(0)]  Value of ULONG.
 
;pCheckResVal
 
;pCheckResVal
:[out, retval]  Pointer to [[PXV:PXV_ImportConverterCheckFmtRes|PXV_ImportConverterCheckFmtRes]].
+
:[out, retval]  Pointer to [[PXV:PXV_FmtCheckResult|PXV_FmtCheckResult]].
  
 
== Return Value ==
 
== Return Value ==

Revision as of 11:39, 11 January 2016


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT CheckFormat([in]                   IPXV_Inst*           pInst,
                    [in]                   IUnknown*            pSrc,
                    [in, defaultvalue(0)]  ULONG                nFlags,
                    [out, retval]          PXV_FmtCheckResult*  pCheckResVal);

Parameters

pInst
[in] Pointer to IPXV_Inst.
pSrc
[in] Pointer to IUnknown*.
nFlags
[in, defaultvalue(0)] Value of ULONG.
pCheckResVal
[out, retval] Pointer to PXV_FmtCheckResult.

Return Value

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

See Also

IPXV_ImportConverter