IPXV_UILanguages::GetItem Method

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

Revision as of 07:45, 12 June 2015


Gets info about supported UI-language.

Syntax

HRESULT GetItem([in]   ULONG  Index,
                [out]  BSTR*  Code,
                [out]  BSTR*  EName,
                [out]  BSTR*  LName);

Parameters

Index
[in] The index of item in list.
Code
[out] Returns string with language code.
EName
[out] Returns string with name in english.
LName
[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