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

Provides functionality for showing dialogs for inserting symbols.

Definition

Namespace:Telerik.WinForms.Documents.UI.Extensibility

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public interface IInsertSymbolWindow

Properties

Gets a value indicating whether the dialog is open.

C#
bool IsOpen { get; }
Property Value:

true if the dialog is open; otherwise, false.

Methods

Shows the dialog.

C#
void Show(Action<char, FontFamily> insertSymbolCallback, FontFamily initialFont, RadRichTextBox owner)
Parameters:insertSymbolCallbackAction<char, FontFamily>

The callback that will be invoked to insert symbols.

initialFontFontFamily

The font which symbols will be loaded initially.

ownerRadRichTextBox

The owner of the dialog.