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

how to provide localization for the word processor and how to insert tab, backspace ,carriage return line feed?

1 Answer 100 Views
RichTextBox
This is a migrated thread and some comments may be shown as answers.
Alex
Top achievements
Rank 1
Alex asked on 07 Mar 2012, 04:46 PM
i want to provide localization for the word processor in the greek language , is it possible and how?(radribbonUI)

i have a virtual on screen keyboard and i inject the characters being clicked into the richtextbox
how to insert tab , backspace (i've used commandbinding but with no luck),carriage return and line feed
if i inject the ascii character will it have the appropriate result in the richtextbox view?

thanks

1 Answer, 1 is accepted

Sort by
0
Iva Toteva
Telerik team
answered on 09 Mar 2012, 03:58 PM
Hi Alex,

You can localize RadRichTextBox and RadRichTextBoxRibbonUI as described in these articles:
When it comes to inserting tabs, line breaks, etc. in RadRichTextBoxUI, you can use the following methods:
this.radRichTextBox1.Insert(FormattingSymbolLayoutBox.TAB);
this.radRichTextBox1.Insert(FormattingSymbolLayoutBox.LINE_BREAK);
this.radRichTextBox1.Insert(FormattingSymbolLayoutBox.ENTER);

Deleting in the way that backspace does can be triggered like this:
this.radRichTextBox1.Delete(true);


All the best,
Iva Toteva
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
Tags
RichTextBox
Asked by
Alex
Top achievements
Rank 1
Answers by
Iva Toteva
Telerik team
Share this question
or