Click or drag to resize

ISpellCheckDictionary.Contains Method

Checks if the dictionary contains the specified word.

Namespace:  DotNetBrowser.SpellCheck
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.27.12
Syntax
C#
bool Contains(
	string word
)

Parameters

word
Type: System.String
The word to check. It must be UTF8, between 1 and 99 bytes long, and without leading or trailing ASCII whitespace.

Return Value

Type: Boolean
true if the word is present in the dictionary, false otherwise.
Exceptions
ExceptionCondition
ArgumentExceptionThe wordis null, empty, or contains only white space.
ObjectDisposedExceptionThe ISpellCheckDictionary has already been disposed.
See Also