Class RichTextSelection
Represents a selection in the RadRichTextEditor.
Inheritance
Namespace: Telerik.XamarinForms.RichTextEditor
Assembly: Telerik.XamarinForms.RichTextEditor.dll
Syntax
public class RichTextSelection : Object
Constructors
RichTextSelection(Int32, Int32, String)
Initializes a new instance of the RichTextSelection class.
Declaration
public RichTextSelection(int start, int end, string text)
Parameters
System.Int32
start
Specifies the start character position of the selection. |
System.Int32
end
Specifies the end character position of the selection. |
System.String
text
Specifies the underlying plain text of the selection. |
Properties
End
Gets the end character position of the selection.
Declaration
public int End { get; }
Property Value
System.Int32
|
Start
Gets the start character position of the selection.
Declaration
public int Start { get; }
Property Value
System.Int32
|
Text
Gets the underlying plain text of the selection.
Declaration
public string Text { get; }
Property Value
System.String
|