New to Telerik UI for WinForms? Start a free 30-day trial
Right-To-Left Support
Updated on May 7, 2026
RadDropDownList fully supports right-to-left (RTL) language locales. You can enable/disable the right-to-left support using RightToLeft enumeration, which has the following members:
-
Yes: Content is aligned from right to left.
-
No: Content is aligned from left to right.
-
Inherit: Direction will be determined by the parent control.
| RightToLeft.Yes | RightToLeft.No |
|---|---|
![]() | ![]() |
Assigning RightToLeft
C#
this.radDropDownList1.RightToLeft = RightToLeft.Yes;
