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

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:

C#
public interface ISelectionMiniToolBar

Derived Classes: SelectionMiniToolBar

Properties

Gets or sets the height of the selection mini toolbar.

C#
double Height { get; }
Property Value:

A double value representing the height in pixels.

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

C#
double Width { get; }
Property Value:

The width of the selection mini tool bar in pixels.

Methods

Hides the selection mini toolbar.

C#
void Hide()

Sets the opacity of the selection mini toolbar.

C#
void SetOpacity(double opacity)
Parameters:opacitydouble

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

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

C#
void Show(Point location, RadRichTextBox radRichTextBox)
Parameters:locationPoint

The point at which to show the selection mini toolbar.

radRichTextBoxRadRichTextBox

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