IPXS_PDFVariant::Arr_InsertStringR Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 15: Line 15:
 
== Parameters ==
 
== Parameters ==
 
;nVal
 
;nVal
:[in]  Pointer to UCHAR.
+
:[in]  Pointer to array of UCHAR values, which represent string in raw format (same bytes as stored in pdf file, except escaped characters will be unescaped and octal characters will be decoded.
 
;nValLen
 
;nValLen
:[in]  Value of ULONG.
+
:[in]  Specifies number of bytes in raw name representation.
 
;nBefore
 
;nBefore
:[in, defaultvalue(-1)]  Value of ULONG.
+
:[in, defaultvalue(-1)]  Specifies index of element before which we will insert new one. If index is greater or equal array size new element will be inserted at the end of array.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 06:06, 21 August 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT Arr_InsertStringR([in]                    UCHAR*  nVal,
                          [in]                    ULONG   nValLen,
                          [in, defaultvalue(-1)]  ULONG   nBefore);

Parameters

nVal
[in] Pointer to array of UCHAR values, which represent string in raw format (same bytes as stored in pdf file, except escaped characters will be unescaped and octal characters will be decoded.
nValLen
[in] Specifies number of bytes in raw name representation.
nBefore
[in, defaultvalue(-1)] Specifies index of element before which we will insert new one. If index is greater or equal array size new element will be inserted at the end of array.

Return Value

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

See Also

IPXS_PDFVariant