ClassRadInsertSymbolDialog
Represents a dialog window that enables users to insert symbols into a RadRichTextBox. This window allows the selection of symbols from a predefined set and specifies the font in which the symbols will be inserted. The dialog is part of the user interface and can be invoked by other components to facilitate symbol insertion functionality. It provides an easy way to interactively select symbols and insert them into the rich text box.
Definition
Namespace:Telerik.Windows.Controls.RichTextBoxUI.Dialogs
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class RadInsertSymbolDialog : RadRichTextBoxWindow, INotifyLayoutChange, IDragAware, IInsertSymbolWindow, IComponentConnector
Inheritance: objectWindowBaseRadWindowRadRichTextBoxWindowRadInsertSymbolDialog
Implements:
Inherited Members
Constructors
RadInsertSymbolDialog()
Initializes a new instance of the RadInsertSymbolDialog class.
Declaration
public RadInsertSymbolDialog()
Methods
InitializeComponent()
InitializeComponent
Declaration
public void InitializeComponent()
OnClosed(WindowClosedEventArgs)
Raises the event.
Declaration
protected override void OnClosed(WindowClosedEventArgs args)
Parameters
args
The WindowClosedEventArgs instance containing the event data.
Overrides
Show(Action<char, FontFamily>, FontFamily, RadRichTextBox)
Shows the dialog.
Declaration
public void Show(Action<char, FontFamily> insertSymbolCallback, FontFamily initialFont, RadRichTextBox owner)
Parameters
insertSymbolCallback
The callback that will be invoked to insert symbols.
initialFont
FontFamily
The font which symbols will be loaded initially.
owner
The owner of the dialog.
Implements