Interface
ISelectionMiniToolBar

Represents the interface for a selection mini toolbar that provides additional functionality and options for working with selected items in a UI context.

Definition

Namespace:Telerik.Windows.Documents.UI.Extensibility

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public interface ISelectionMiniToolBar

Properties

Height

Gets or sets the height of the selection mini toolbar.

Declaration

cs-api-definition
double Height { get; }

Property Value

double

A double value representing the height in pixels.

Width

Gets or sets the width of the selection mini tool bar.

Declaration

cs-api-definition
double Width { get; }

Property Value

double

The width of the selection mini tool bar in pixels.

Methods

Hide()

Hides the selection mini toolbar.

Declaration

cs-api-definition
void Hide()

SetOpacity(double)

Sets the opacity of the selection mini toolbar.

Declaration

cs-api-definition
void SetOpacity(double opacity)

Parameters

opacity

double

A double value representing the opacity level to set, where 0.0 is fully transparent and 1.0 is fully opaque.

Show(Point, RadRichTextBox)

Displays the selection mini toolbar at the specified point in the RadRichTextBox.

Declaration

cs-api-definition
void Show(Point location, RadRichTextBox radRichTextBox)

Parameters

location

Point

The point at which to show the selection mini toolbar.

radRichTextBox

RadRichTextBox

The RadRichTextBox control in which the mini toolbar will be displayed.