Checks a string containing text and returns a list of spelling errors.

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

Syntax

C#
public CharRangeList CheckText(
	string text,
	int start,
	int length
)
Visual Basic
Public Function CheckText ( _
	text As String, _
	start As Integer, _
	length As Integer _
) As CharRangeList

Parameters

text
Type: System..::..String
Text to be spell-checked.
start
Type: System..::..Int32
Index of the character where to start checking.
length
Type: System..::..Int32
Length of the string to check.

Return Value

List of CharRange objects that describe the spelling mistakes.

See Also