Gets an array containing suggestions for a misspelled word.

Namespace:  C1.Silverlight.SpellChecker
Assembly:  C1.Silverlight.SpellChecker (in C1.Silverlight.SpellChecker.dll)

Syntax

C#
public string[] GetSuggestions(
	string word,
	int maxCount
)
Visual Basic
Public Function GetSuggestions ( _
	word As String, _
	maxCount As Integer _
) As String()

Parameters

word
Type: System..::..String
Word to suggest alternatives for.
maxCount
Type: System..::..Int32
Maximum number of suggestions to provide.

Return Value

An array containing suggestions for the word parameter.

See Also