Nevron Open Vision Documentation
Nevron.Nov.Text.SpellCheck Namespace / NDictionary Class / GetSuggestions 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
    GetSuggestions Method (NDictionary)
    In This Topic
    Gets an iterator that iterates through the words which are similar to the given one and may be used as suggestions in spell checking. The most similar words come first.
    Syntax
    'Declaration
     
    
    Public MustOverride Function GetSuggestions( _
       ByVal chars() As System.Char, _
       ByVal startIndex As System.Integer, _
       ByVal endIndex As System.Integer _
    ) As INIterator(Of Char())
    'Usage
     
    
    Dim instance As NDictionary
    Dim chars() As System.Char
    Dim startIndex As System.Integer
    Dim endIndex As System.Integer
    Dim value As INIterator(Of Char())
     
    value = instance.GetSuggestions(chars, startIndex, endIndex)
    public abstract INIterator<char[]> GetSuggestions( 
       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