ISpellCheckCallbacks::GetHyphens 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 GetHyphens([in]  LPWSTR    sWord,
+
<pre class="brush:cpp;gutter:false">HRESULT GetHyphens([in]  LPWSTR    Word,
                   [in]  LONG      nWordLen,
+
                   [in]  LONG      WordLen,
                   [in]  ULONG    nLangID,
+
                   [in]  ULONG    LangID,
                   [in]  IBitSet*  pPositions);</pre>
+
                   [in]  IBitSet*  Positions);</pre>
  
 
== Parameters ==
 
== Parameters ==
;sWord
+
;Word
 
:[in]  Value of LPWSTR.
 
:[in]  Value of LPWSTR.
;nWordLen
+
;WordLen
 
:[in]  Value of LONG.
 
:[in]  Value of LONG.
;nLangID
+
;LangID
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
;pPositions
+
;Positions
 
:[in]  Pointer to [[PXV:IBitSet|IBitSet]].
 
:[in]  Pointer to [[PXV:IBitSet|IBitSet]].
  

Revision as of 07:46, 12 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT GetHyphens([in]  LPWSTR    Word,
                   [in]  LONG      WordLen,
                   [in]  ULONG     LangID,
                   [in]  IBitSet*  Positions);

Parameters

Word
[in] Value of LPWSTR.
WordLen
[in] Value of LONG.
LangID
[in] Value of ULONG.
Positions
[in] Pointer to IBitSet.

Return Value

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

See Also

ISpellCheckCallbacks