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

ISpellChecker

Interface

Definition

Namespace:Telerik.WinControls.SpellChecker.Proofing

Assembly:Telerik.WinControls.SpellChecker.dll

Syntax:

C#
public interface ISpellChecker : IDisposable

Derived Classes: DocumentSpellChecker

Inherited Members IDisposable.Dispose()

Properties

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#
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