RichTextBox for WPF | ComponentOne
C1.WPF.SpellChecker Namespace / C1SpellChecker Class / CheckText Method / CheckText(String,Int32,Int32) Method
Text to be spell-checked.
Index of the character where to start checking.
Length of the string to check.

In This Topic
    CheckText(String,Int32,Int32) Method
    In This Topic
    Checks a string containing text and returns a list of spelling errors.
    Syntax
    'Declaration
     
    
    Public Overloads Function CheckText( _
       ByVal text As String, _
       ByVal start As Integer, _
       ByVal length As Integer _
    ) As CharRangeList
    public CharRangeList CheckText( 
       string text,
       int start,
       int length
    )

    Parameters

    text
    Text to be spell-checked.
    start
    Index of the character where to start checking.
    length
    Length of the string to check.

    Return Value

    List of CharRange objects that describe the spelling mistakes.
    See Also