IPXS_PDFVariant::Arr_Set 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 Arr_Set([in]                  ULONG            Pos,
+
<pre class="brush:cpp;gutter:false">HRESULT Arr_Set([in]                  ULONG            nPos,
                 [in]                  IPXS_PDFVariant*  Item,
+
                 [in]                  IPXS_PDFVariant*  pItem,
                 [in, defaultvalue(0)]  VARIANT_BOOL      Clone);</pre>
+
                 [in, defaultvalue(0)]  VARIANT_BOOL      bClone);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Pos
+
;nPos
 
:[in] Specifies index of element to replace. If it is greater or equal to array size function will return <code>E_INVALIDARG</code>.
 
:[in] Specifies index of element to replace. If it is greater or equal to array size function will return <code>E_INVALIDARG</code>.
;Item
+
;pItem
 
:[in] Pointer to [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]], that should be inserted.
 
:[in] Pointer to [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]], that should be inserted.
;Clone
+
;bClone
 
:[in, defaultvalue(0)] Determine will we insert original variant or its clone. Please note that it is strongly not recommended to insert one direct variant into more that one container as it may result unpredictable behavior. If you need to insert exactly same value into more than one container you should make it indirect and insert clone of this indirect value (yes, will be inserted clone of indirect reference, but not value itself).
 
:[in, defaultvalue(0)] Determine will we insert original variant or its clone. Please note that it is strongly not recommended to insert one direct variant into more that one container as it may result unpredictable behavior. If you need to insert exactly same value into more than one container you should make it indirect and insert clone of this indirect value (yes, will be inserted clone of indirect reference, but not value itself).
  

Latest revision as of 03:42, 15 June 2015


Replace specified element of array with supplied variant or its clone. To insert variant into array please use IPXS_PDFVariant::Arr_Insert function.

Syntax

HRESULT Arr_Set([in]                   ULONG             nPos,
                [in]                   IPXS_PDFVariant*  pItem,
                [in, defaultvalue(0)]  VARIANT_BOOL      bClone);

Parameters

nPos
[in] Specifies index of element to replace. If it is greater or equal to array size function will return E_INVALIDARG.
pItem
[in] Pointer to IPXS_PDFVariant, that should be inserted.
bClone
[in, defaultvalue(0)] Determine will we insert original variant or its clone. Please note that it is strongly not recommended to insert one direct variant into more that one container as it may result unpredictable behavior. If you need to insert exactly same value into more than one container you should make it indirect and insert clone of this indirect value (yes, will be inserted clone of indirect reference, but not value itself).

Return Value

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

See Also

IPXS_PDFVariant::Arr_Insert, IPXS_PDFVariant