New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Symbols
The RadEditor Symbols dropdown by default displays a predefined set of symbols. They are kept in the Symbols Collection. You can add to the Symbols collection declaratively, programmatically and using the ToolsFile.
Using the Symbols Collection Declaratively
ASP.NET
<telerik:RadEditor RenderMode="Lightweight" runat="server" ID="RadEditor1" Skin="WebBlue">
<Symbols>
<telerik:EditorSymbol Char="\u20AC" />
<telerik:EditorSymbol Char="\u00A2" />
<telerik:EditorSymbol Char="\u00A3" />
<telerik:EditorSymbol Char="\u00A5" />
<telerik:EditorSymbol Char="\u00A9" />
<telerik:EditorSymbol Char="\u00AE" />
</Symbols>
</telerik:RadEditor>
Using Symbols Programmatically
Use the RealFontSizes collection Add() method to include new items in the list. You can add a character using the unicode escape character "\u" plus the number of the character or use the symbol literals directly.
C#
// Use the unicode escape character "\u"
RadEditor1.Symbols.Add("\u00A2");
RadEditor1.Symbols.Add("\u00A3");
RadEditor1.Symbols.Add("\u00A5");
RadEditor1.Symbols.Add("\u00A4");
RadEditor1.Symbols.Add("\u00A9");
RadEditor1.Symbols.Add("\u00AE");
// Use the symbol literals directly
RadEditor1.Symbols.Add("£");
RadEditor1.Symbols.Add("©");
RadEditor1.Symbols.Add("®");