Nevron Open Vision Documentation
Nevron.Nov.Text.SpellCheck Namespace / NDictionary Class / IsCorrect Method
The char array the word is part of.
The inclusive start char index of the word.
The inclusive end char index of the word.


In This Topic
    IsCorrect Method (NDictionary)
    In This Topic
    Checks whether the given word is correct according to this spell check dictionary.
    Syntax
    'Declaration
     
    
    Public MustOverride Function IsCorrect( _
       ByVal chars() As System.Char, _
       ByVal startIndex As System.Integer, _
       ByVal endIndex As System.Integer _
    ) As System.Boolean
    'Usage
     
    
    Dim instance As NDictionary
    Dim chars() As System.Char
    Dim startIndex As System.Integer
    Dim endIndex As System.Integer
    Dim value As System.Boolean
     
    value = instance.IsCorrect(chars, startIndex, endIndex)
    public abstract System.bool IsCorrect( 
       System.char[] chars,
       System.int startIndex,
       System.int endIndex
    )

    Parameters

    chars
    The char array the word is part of.
    startIndex
    The inclusive start char index of the word.
    endIndex
    The inclusive end char index of the word.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also