Keyoti RapidSpell WPF API Docs
FindCompoundWords Method (text, subwords)
APIKeyoti.RapidSpell.WpfRapidSpellCheckerFindCompoundWords(String, IList)
Keyoti RapidSpell WPF
Finds the compound words in text and puts them in subwords, set subwords to null/nothing to just find if text has compound word formation.
Declaration Syntax
C#C#Visual BasicVisual BasicVisual C++Visual C++F#F#
public virtual bool FindCompoundWords(
	string text,
	IList subwords
)
public virtual bool FindCompoundWords(
	string text,
	IList subwords
)
Public Overridable Function FindCompoundWords ( 
	text As String,
	subwords As IList
) As Boolean
Public Overridable Function FindCompoundWords ( 
	text As String,
	subwords As IList
) As Boolean
public:
virtual bool FindCompoundWords(
	String^ text, 
	IList^ subwords
)
public:
virtual bool FindCompoundWords(
	String^ text, 
	IList^ subwords
)
abstract FindCompoundWords : 
        text : string * 
        subwords : IList -> bool 
override FindCompoundWords : 
        text : string * 
        subwords : IList -> bool 
abstract FindCompoundWords : 
        text : string * 
        subwords : IList -> bool 
override FindCompoundWords : 
        text : string * 
        subwords : IList -> bool 
Parameters
text (String)
The text to find compound words in
subwords (IList)
A list that formative sub-words will be added to, can be null/nothing.
Return Value
Boolean
True if text is entirely formed from compound words, False if not.
Remarks
Only adds words to list if all are valid. In other words, this will not find all words that are part of text, but only the words that all make up text.

Eg. "catchmentarea" has words "catchment" and "area" but not "cat", "me" etc.

The order of the words in the list is the reverse of their order in text.
Exceptions
ExceptionCondition
ArgumentNullExceptionif text is null

Assembly: Keyoti4.RapidSpell.WPF (Module: Keyoti4.RapidSpell.WPF.dll) Version: 3.1.16.1214