IPXV_OCRRegions::InsertNew Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 10: Line 10:
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">HRESULT InsertNew([in]                              ULONG            nFlags,
 
<pre class="brush:cpp;gutter:false">HRESULT InsertNew([in]                              ULONG            nFlags,
                   [in]                              PXC_Rect*        pRectOnPage,
+
                   [in]                              PXC_Rect*        stRectOnPage,
 
                   [in, defaultvalue(-1)]            LONG              nInsertBefore,
 
                   [in, defaultvalue(-1)]            LONG              nInsertBefore,
                   [out, retval, defaultvalue(NULL)]  IPXV_OCRRegion**  ppNewItem);</pre>
+
                   [out, retval, defaultvalue(NULL)]  IPXV_OCRRegion**  pNewItem);</pre>
  
 
== Parameters ==
 
== Parameters ==
 
;nFlags
 
;nFlags
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
;pRectOnPage
+
;stRectOnPage
 
:[in]  Pointer to [[PXV:PXC_Rect|PXC_Rect]].
 
:[in]  Pointer to [[PXV:PXC_Rect|PXC_Rect]].
 
;nInsertBefore
 
;nInsertBefore
 
:[in, defaultvalue(-1)]  Value of LONG.
 
:[in, defaultvalue(-1)]  Value of LONG.
;ppNewItem
+
;pNewItem
 
:[out, retval, defaultvalue(NULL)]  Pointer to [[PXV:IPXV_OCRRegion|IPXV_OCRRegion]].
 
:[out, retval, defaultvalue(NULL)]  Pointer to [[PXV:IPXV_OCRRegion|IPXV_OCRRegion]].
  

Revision as of 02:43, 4 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT InsertNew([in]                               ULONG             nFlags,
                  [in]                               PXC_Rect*         stRectOnPage,
                  [in, defaultvalue(-1)]             LONG              nInsertBefore,
                  [out, retval, defaultvalue(NULL)]  IPXV_OCRRegion**  pNewItem);

Parameters

nFlags
[in] Value of ULONG.
stRectOnPage
[in] Pointer to PXC_Rect.
nInsertBefore
[in, defaultvalue(-1)] Value of LONG.
pNewItem
[out, retval, defaultvalue(NULL)] Pointer to IPXV_OCRRegion.

Return Value

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

See Also

IPXV_OCRRegions