New to Telerik UI for WinFormsStart a free 30-day trial

ISpellChecker

Interface

Definition

Namespace:Telerik.WinForms.Documents.Proofing

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public interface ISpellChecker

Derived Classes: DocumentSpellChecker

Properties

C#
SpellCheckerSettings Settings { get; set; }
C#
CultureInfo SpellCheckingCulture { get; set; }

Methods

C#
void AddWord(string word, CultureInfo culture)
Parameters:wordstringcultureCultureInfo
C#
void AddWord(string word)
Parameters:wordstring
C#
bool CanAddWord()
Returns:

bool

C#
bool CanAddWord(CultureInfo culture)
Parameters:cultureCultureInfoReturns:

bool

C#
bool CheckWordIsCorrect(string word, CultureInfo culture)
Parameters:wordstringcultureCultureInfoReturns:

bool

C#
bool CheckWordIsCorrect(string word)
Parameters:wordstringReturns:

bool

C#
ICustomWordDictionary GetCustomDictionary()
Returns:

ICustomWordDictionary

C#
ICustomWordDictionary GetCustomDictionary(CultureInfo culture)
Parameters:cultureCultureInfoReturns:

ICustomWordDictionary

C#
IWordDictionary GetDictionary()
Returns:

IWordDictionary

C#
IWordDictionary GetDictionary(CultureInfo culture)
Parameters:cultureCultureInfoReturns:

IWordDictionary

C#
ICollection<string> GetSuggestions(string word, CultureInfo culture)
Parameters:wordstringcultureCultureInfoReturns:

ICollection<string>

C#
ICollection<string> GetSuggestions(string word)
Parameters:wordstringReturns:

ICollection<string>

C#
void RemoveWord(string word, CultureInfo culture)
Parameters:wordstringcultureCultureInfo
C#
void RemoveWord(string word)
Parameters:wordstring

Events

C#
event EventHandler DataChanged