Category / Section
How to specify the text of the EditControl in the RTL Mode?
The content of the EditControl can be displayed in the RightToLeft layout by enabling the property, RenderRightToLeft in the EditControl.
The following code example demonstrates the same.
C#
//Sets the content of the EditControl in the RTL mode. this.editControl1.RenderRightToLeft = true; //Sets the content of the EditControl in the LTR mode. this.editControl1.RenderRightToLeft = false;
VB
'Sets the content of the EditControl in the RTL mode. Me.editControl1.RenderRightToLeft = True 'Sets the content of the EditControl in the LTR mode. Me.editControl1.RenderRightToLeft = False
The following shortcut keys help specify the content layout of the EditControl.
Shortcut keys:
Left to Right: LeftShift + LeftCtrl
Right to Left: RightShift + RightCtrl

Figure 1: EditControl in default layout

Figure 2: EditControl in RTL mode
Sample Links: