Interface ISpellEditor
Defines a SpellChecker interface that provides methods to interact with the editor.
Namespace: Syncfusion.Text
Assembly: Syncfusion.Shared.Base.dll
Syntax
public interface ISpellEditor
Properties
Control
Gets or sets the Control whose
Declaration
Control Control { get; set; }
Property Value
Type |
---|
System.Windows.Forms.Control |
CurrentWord
Gets or sets the current misspelled word.
Declaration
string CurrentWord { get; set; }
Property Value
Type |
---|
System.String |
Text
Gets or sets the Text to be spell checked by the SpellChecker
Declaration
string Text { get; set; }
Property Value
Type |
---|
System.String |
Methods
SelectText(Int32, Int32)
Selects the word specified by the index.
Declaration
void SelectText(int startIndex, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | startIndex | Zero based index of the word on the Text. |
System.Int32 | length | length of the word to be selected. |