IPXV_UILanguages::GetItem Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 10: Line 10:
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">HRESULT GetItem([in]  ULONG  nIndex,
 
<pre class="brush:cpp;gutter:false">HRESULT GetItem([in]  ULONG  nIndex,
                 [out]  BSTR*  ppCode,
+
                 [out]  BSTR*  sCode,
                 [out]  BSTR*  ppEName,
+
                 [out]  BSTR*  sEName,
                 [out]  BSTR*  ppLName);</pre>
+
                 [out]  BSTR*  sLName);</pre>
  
 
== Parameters ==
 
== Parameters ==
 
;nIndex
 
;nIndex
 
:[in]  The index of item in list.
 
:[in]  The index of item in list.
;ppCode
+
;sCode
 
:[out]  Returns string with language code.
 
:[out]  Returns string with language code.
;ppEName
+
;sEName
 
:[out]  Returns string with name in english.
 
:[out]  Returns string with name in english.
;ppLName
+
;sLName
 
:[out]  Returns string with local name.
 
:[out]  Returns string with local name.
  

Revision as of 03:01, 4 June 2015


Gets info about supported UI-language.

Syntax

HRESULT GetItem([in]   ULONG  nIndex,
                [out]  BSTR*  sCode,
                [out]  BSTR*  sEName,
                [out]  BSTR*  sLName);

Parameters

nIndex
[in] The index of item in list.
sCode
[out] Returns string with language code.
sEName
[out] Returns string with name in english.
sLName
[out] Returns string with local name.

Return Value

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

See Also

IPXV_UILanguages