Struct SpellCheckError
Struct SpellCheckError
Namespace: Aspose.OCR.SpellChecker
Assembly: Aspose.OCR.dll (25.2.0)
Representing misspelled word with additional data.
public struct SpellCheckError
Inherited Members
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Properties
Length
Msspelled word’s length in the input text.
public int Length { readonly get; set; }
Property Value
StartPosition
Word’s position in the input text.
public int StartPosition { readonly get; set; }
Property Value
SuggestedWords
list of objects with suggested correct spellings
public List<suggestedword> SuggestedWords { readonly get; set; }
Property Value
List<SuggestedWord>
Word
The word being misspelled.
public string Word { readonly get; set; }