Interface IEditorProperties
Interfaces specifying the properties of Editor control
Namespace: Syncfusion.Windows.Controls
Assembly: Syncfusion.SfSpellChecker.WPF.dll
Syntax
public interface IEditorProperties
Properties
ControlToSpellCheck
Gets or Sets the control to be checked
Declaration
Control ControlToSpellCheck { get; set; }
Property Value
Type |
---|
System.Windows.Controls.Control |
SelectedText
Gets or Sets the selected text
Declaration
string SelectedText { get; set; }
Property Value
Type |
---|
System.String |
Text
Gets or Sets the text to be checked
Declaration
string Text { get; set; }
Property Value
Type |
---|
System.String |
Methods
Focus()
Focuses the editor
Declaration
void Focus()
HasMoreTextToCheck()
Returns a value indicating whether to continue with the spell checking
Declaration
bool HasMoreTextToCheck()
Returns
Type |
---|
System.Boolean |
Select(Int32, Int32)
Selects the particular range of text in the editor
Declaration
void Select(int selectionStart, int selectionLength)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | selectionStart | |
System.Int32 | selectionLength |
UpdateTextField()
Updates the text field so that SpellChecker will spell check with newly updated texts
Declaration
void UpdateTextField()