Class
RichTextSelection

Represents a selection in the RadRichTextEditor.

Definition

Namespace:Telerik.Maui.Controls.RichTextEditor

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class RichTextSelection

Inheritance: objectRichTextSelection

Constructors

RichTextSelection(int, int, string)

Initializes a new instance of the RichTextSelection class.

Declaration

cs-api-definition
public RichTextSelection(int start, int end, string text)

Parameters

start

int

Specifies the start character position of the selection.

end

int

Specifies the end character position of the selection.

text

string

Specifies the underlying plain text of the selection.

Properties

End

Gets the end character position of the selection.

Declaration

cs-api-definition
public int End { get; }

Property Value

int

Start

Gets the start character position of the selection.

Declaration

cs-api-definition
public int Start { get; }

Property Value

int

Text

Gets the underlying plain text of the selection.

Declaration

cs-api-definition
public string Text { get; }

Property Value

string