IPXS_PDFVariant::Arr_GetInt Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
m (Automatic page editing by robot) |
||
Line 4: | Line 4: | ||
{{#parentPage:PXV:IPXS_PDFVariant#Methods|Arr_GetInt|method}} | {{#parentPage:PXV:IPXS_PDFVariant#Methods|Arr_GetInt|method}} | ||
− | Returns the value of a specified element of an array as an integer. If the specified element type is <code>PVT_Double</code>, the value will be truncated to an integer. If specified element type is neither <code>PVT_Integer</code> nor <code>PVT_Double</code>, <code> | + | Returns the value of a specified element of an array as an integer. If the specified element type is <code>PVT_Double</code>, the value will be truncated to an integer. If specified element type is neither <code>PVT_Integer</code> nor <code>PVT_Double</code>, <code>nDefValue</code> is returned. |
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT Arr_GetInt([in] ULONG | + | <pre class="brush:cpp;gutter:false">HRESULT Arr_GetInt([in] ULONG nIndex, |
− | [in, defaultvalue(0)] LONG | + | [in, defaultvalue(0)] LONG nDefValue, |
− | [out, retval] LONG* | + | [out, retval] LONG* nVal);</pre> |
== Parameters == | == Parameters == | ||
− | ; | + | ;nIndex |
:[in] Specifies the index of the array element. | :[in] Specifies the index of the array element. | ||
− | ; | + | ;nDefValue |
:[in, defaultvalue(0)] Default value that will be returned when specified index is out of range or the element is not a numeric value. If not specified, zero will be returned. | :[in, defaultvalue(0)] Default value that will be returned when specified index is out of range or the element is not a numeric value. If not specified, zero will be returned. | ||
− | ; | + | ;nVal |
:[out, retval] Pointer to a LONG variable that receives the returned value. | :[out, retval] Pointer to a LONG variable that receives the returned value. | ||
== Return Value == | == Return Value == | ||
− | Returns S_OK if operation was successful or error code in other cases. Returns S_FALSE when <code> | + | Returns S_OK if operation was successful or error code in other cases. Returns S_FALSE when <code>nDefValue</code> returned. |
== See Also == | == See Also == | ||
[[PXV:IPXS_PDFVariant|IPXS_PDFVariant]] | [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]] |
Latest revision as of 02:42, 15 June 2015
Returns the value of a specified element of an array as an integer. If the specified element type is PVT_Double
, the value will be truncated to an integer. If specified element type is neither PVT_Integer
nor PVT_Double
, nDefValue
is returned.
Syntax
HRESULT Arr_GetInt([in] ULONG nIndex, [in, defaultvalue(0)] LONG nDefValue, [out, retval] LONG* nVal);
Parameters
- nIndex
- [in] Specifies the index of the array element.
- nDefValue
- [in, defaultvalue(0)] Default value that will be returned when specified index is out of range or the element is not a numeric value. If not specified, zero will be returned.
- nVal
- [out, retval] Pointer to a LONG variable that receives the returned value.
Return Value
Returns S_OK if operation was successful or error code in other cases. Returns S_FALSE when nDefValue
returned.