New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public interface IInlineSelectionHandler

Derived Classes: ImageAdornerUIShapeAdornerUI

Methods

Retrieves the element associated with the inline selection handler.

C#
UIElement GetUIElement()
Returns:

UIElement

The UI element that represents the current inline selection.

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

C#
void HideSelection()

Displays the inline selection for the specified inline element.

C#
void ShowInlineSelection(Inline inline, bool readOnly)
Parameters:inlineInline

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

readOnlybool

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