This is a migrated thread and some comments may be shown as answers.

Turkish Lira Symbol

1 Answer 72 Views
RichTextBox
This is a migrated thread and some comments may be shown as answers.
Serhat
Top achievements
Rank 1
Serhat asked on 14 May 2014, 08:10 AM
Our product use telerik Richtextbox editor  and  currently there is no turkish lira symbol support. Is there a way to add support Turkish Lira symbol to the editor. Thanks anyway.

1 Answer, 1 is accepted

Sort by
0
Missing User
answered on 15 May 2014, 04:06 PM
Hello,

Thank you for your interest in RadRichTextBox!

You can always insert the Turkish Lira symbol in the editor from code. The following code-snippet illustrate how to achieve this:
this.editor.Insert("\u20BA");

As to the InsertSymbolDialog, it actually shows the symbols of all fonts registered on the machine, so if you select a font which contains the symbol in the drop-down you should be able to insert the symbol. Also, if you register a custom font containing this symbol it should be picked-up by the dialog. Here is how a custom font can be registered:
FontFamilyInfo fontFamilyInfo = new FontFamilyInfo(new FontFamily(familyName), "My Custom Font Name");
FontManager.RegisterFont(fontFamilyInfo);

Let me know if I can assist you with anything else.

Regards,
Yancho
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
RichTextBox
Asked by
Serhat
Top achievements
Rank 1
Answers by
Missing User
Share this question
or