ISpellCheckCallbacks::GetLang 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 GetLang([in]                  LPWSTR  sWord,
+
<pre class="brush:cpp;gutter:false">HRESULT GetLang([in]                  LPWSTR  Word,
                 [in]                  LONG    nWordLen,
+
                 [in]                  LONG    WordLen,
                 [in, defaultvalue(0)]  ULONG  nDesiredLangID,
+
                 [in, defaultvalue(0)]  ULONG  DesiredLangID,
                 [out, retval]          ULONG*  nLangID);</pre>
+
                 [out, retval]          ULONG*  LangID);</pre>
  
 
== Parameters ==
 
== Parameters ==
;sWord
+
;Word
 
:[in]  Value of LPWSTR.
 
:[in]  Value of LPWSTR.
;nWordLen
+
;WordLen
 
:[in]  Value of LONG.
 
:[in]  Value of LONG.
;nDesiredLangID
+
;DesiredLangID
 
:[in, defaultvalue(0)]  Value of ULONG.
 
:[in, defaultvalue(0)]  Value of ULONG.
;nLangID
+
;LangID
 
:[out, retval]  Pointer to ULONG.
 
:[out, retval]  Pointer to ULONG.
  

Revision as of 07:46, 12 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT GetLang([in]                   LPWSTR  Word,
                [in]                   LONG    WordLen,
                [in, defaultvalue(0)]  ULONG   DesiredLangID,
                [out, retval]          ULONG*  LangID);

Parameters

Word
[in] Value of LPWSTR.
WordLen
[in] Value of LONG.
DesiredLangID
[in, defaultvalue(0)] Value of ULONG.
LangID
[out, retval] Pointer to ULONG.

Return Value

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

See Also

ISpellCheckCallbacks