ISpellCheckCallbacks::CheckWord Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:ISpellCheckCallbacks::CheckWord Method}}
 
{{#customTitle:ISpellCheckCallbacks::CheckWord Method}}
 +
{{#parentPage:PXV:ISpellCheckCallbacks#Methods|CheckWord|method}}
 +
{{ToWrite}}
 +
{{ToReview}}
  
 
The method of interface of PDF-XChange Editor SDK.
 
The method of interface of PDF-XChange Editor SDK.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CheckWord([in] ULONG nLangID, [in] BSTR pWord, [in, defaultvalue(0)] VARIANT_BOOL bAsyncCheck, [out, retval] LONG* pCheckRes);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT CheckWord([in]                   ULONG         nLangID,
 +
                  [in]                   BSTR         sWord,
 +
                  [in, defaultvalue(0)] VARIANT_BOOL bAsyncCheck,
 +
                  [out, retval]         LONG*         nCheckRes);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''nLangID''
+
;nLangID
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
;''pWord''
+
;sWord
 
:[in]  Value of BSTR.
 
:[in]  Value of BSTR.
;''bAsyncCheck''
+
;bAsyncCheck
 
:[in, defaultvalue(0)]  Value of VARIANT_BOOL.
 
:[in, defaultvalue(0)]  Value of VARIANT_BOOL.
;''pCheckRes''
+
;nCheckRes
 
:[out, retval]  Pointer to LONG.
 
:[out, retval]  Pointer to LONG.
  
Line 21: Line 28:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:ISpellCheckCallbacks|ISpellCheckCallbacks]].
+
[[PXV:ISpellCheckCallbacks|ISpellCheckCallbacks]]

Latest revision as of 04:10, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT CheckWord([in]                   ULONG         nLangID,
                  [in]                   BSTR          sWord,
                  [in, defaultvalue(0)]  VARIANT_BOOL  bAsyncCheck,
                  [out, retval]          LONG*         nCheckRes);

Parameters

nLangID
[in] Value of ULONG.
sWord
[in] Value of BSTR.
bAsyncCheck
[in, defaultvalue(0)] Value of VARIANT_BOOL.
nCheckRes
[out, retval] Pointer to LONG.

Return Value

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

See Also

ISpellCheckCallbacks