IPXS_PDFVariant::Arr_GetString Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 5: Line 5:
 
{{ToReview}}
 
{{ToReview}}
  
The Returns the value of a specified element of an array as an unicode string ('''BSTR'''). If specified element type is not <code>PVT_String</code> <code>DefVal</code> is returned.
+
The Returns the value of a specified element of an array as an unicode string ('''BSTR'''). If specified element type is not <code>PVT_String</code> <code>sDefVal</code> is returned.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Arr_GetString([in]          ULONG  Index,
+
<pre class="brush:cpp;gutter:false">HRESULT Arr_GetString([in]          ULONG  nIndex,
                       [in]          BSTR  DefVal,
+
                       [in]          BSTR  sDefVal,
                       [out, retval]  BSTR*  Val);</pre>
+
                       [out, retval]  BSTR*  sVal);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Index
+
;nIndex
 
:[in] Specifies the index of the array element.
 
:[in] Specifies the index of the array element.
;DefVal
+
;sDefVal
 
:[in] Default value that will be returned when specified index is out of range or the element type is not <code>PVT_String</code>.
 
:[in] Default value that will be returned when specified index is out of range or the element type is not <code>PVT_String</code>.
;Val
+
;sVal
 
:[out, retval] Pointer to BSTR that receives the returned value.
 
:[out, retval] Pointer to BSTR that receives the returned value.
  

Latest revision as of 03:42, 15 June 2015


The Returns the value of a specified element of an array as an unicode string (BSTR). If specified element type is not PVT_String sDefVal is returned.

Syntax

HRESULT Arr_GetString([in]           ULONG  nIndex,
                      [in]           BSTR   sDefVal,
                      [out, retval]  BSTR*  sVal);

Parameters

nIndex
[in] Specifies the index of the array element.
sDefVal
[in] Default value that will be returned when specified index is out of range or the element type is not PVT_String.
sVal
[out, retval] Pointer to BSTR that receives the returned value.

Return Value

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

See Also

IPXS_PDFVariant