Interface IImageMiniToolBar
Represents the interface for an image mini toolbar that provides extensibility features for image editing in the application.
Namespace: Telerik.Windows.Documents.UI.Extensibility
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface IImageMiniToolBar
Methods
Hide()
Hides the image mini toolbar.
Declaration
void Hide()
Show(Point, ImageInline, Action<ImageInline>, RadRichTextBox)
Displays the image mini toolbar at the specified location for the given image inline element.
Declaration
void Show(Point location, ImageInline imageInline, Action<ImageInline> replaceCurrentImage, RadRichTextBox owner)
Parameters
System.Windows.Point
location
The point where the mini toolbar should be displayed. |
ImageInline
imageInline
The image inline element to which the mini toolbar is associated. |
System.Action<ImageInline>
replaceCurrentImage
The action to be executed when the image inline is changed. |
RadRichTextBox
owner
The RadRichTextBox instance in which the image inline is contained. |