Interface
IInlineSelectionHandler

Represents a handler for inline selections within a document, allowing for the manipulation and management of selected inline elements.

Definition

Namespace:Telerik.Windows.Documents.Selection

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public interface IInlineSelectionHandler

Methods

GetUIElement()

Retrieves the element associated with the inline selection handler.

Declaration

cs-api-definition
UIElement GetUIElement()

Returns

UIElement

The UI element that represents the current inline selection.

HideSelection()

Hides the current inline selection, making it invisible to the user.

Declaration

cs-api-definition
void HideSelection()

ShowInlineSelection(Inline, bool)

Displays the inline selection for the specified inline element.

Declaration

cs-api-definition
void ShowInlineSelection(Inline inline, bool readOnly)

Parameters

inline

Inline

The inline element for which the selection is to be displayed.

readOnly

bool

A boolean value indicating whether the inline element can be changed.