Articles in this section
Category / Section

How to specify the text of the EditControl in the RTL Mode?

1 min read

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


Default layout of EditControl

Figure 1: EditControl in default layout

RTL mode of EditControl

Figure 2: EditControl in RTL mode

Sample Links:

C#: EditControl_ContentLayout_RTL

VB: EditControl_ContentLayout_RTL_VB

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied