| CalendarView for WinForms > Using Controls > DateEdit Features > Internationalization |
DateEdit supports internationalization in the following ways:
For information about setting culture settings and right-to-left functionality in CalendarView, see Culture Settings and Right to Left Support in CalendarView Features.
The following image shows DateEdit with Arabic culture in right-to-left direction.

The following code snippet shows how to set the current culture and enable right-to-left functionality in the DateEdit control.
' set culture C1DateEdit1.Culture = 2048 ' enable right to left functionality C1DateEdit1.RightToLeft = RightToLeft.Yes
// set the culture c1DateEdit1.Culture= 2049; // enable right to left functionality c1DateEdit1.RightToLeft = RightToLeft.Yes;