Interface IEditorProperties
Interfaces specifying the properties of Editor control
Namespace: Syncfusion.UI.Xaml.Controls
Assembly: Syncfusion.SfSpellChecker.UWP.dll
Syntax
[ClassReference(IsReviewed = false)]
public interface IEditorProperties
Properties
ControlToCheck
Gets or Sets the control to be checked
Declaration
[ClassReference(IsReviewed = false)]
Control ControlToCheck { get; set; }
Property Value
Type |
---|
Windows.UI.Xaml.Controls.Control |
SelectedText
Gets or Sets the selected text
Declaration
[ClassReference(IsReviewed = false)]
string SelectedText { get; set; }
Property Value
Type |
---|
System.String |
Text
Gets or Sets the text to be checked
Declaration
[ClassReference(IsReviewed = false)]
string Text { get; set; }
Property Value
Type |
---|
System.String |
Methods
Focus()
Focuses the editor
Declaration
[ClassReference(IsReviewed = false)]
void Focus()
HasMoreTextToCheck()
Returns a value indicating whether to continue with the spell checking
Declaration
[ClassReference(IsReviewed = false)]
bool HasMoreTextToCheck()
Returns
Type |
---|
System.Boolean |
Select(Int32, Int32)
Selects the particular range of text in the editor
Declaration
[ClassReference(IsReviewed = false)]
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
[ClassReference(IsReviewed = false)]
void UpdateTextField()