# RTL Support

## Content



Some languages render content from the right to the left of the page, such as Arabic and Hebrew. To support this type of rendering, **RightToLeft** property can be used to align all the elements in the Accordion control in right to left direction as showcased in the following image.

![WinForms Accordion with Right to Left support](https://cdn.mescius.io/document-site-files/images/a9d1222b-0ddf-4c55-8888-49748b62a8c3/images/rtl.png)

The following code showcases how to set the RightToLeft property for the Accordion control. This example uses the code from [Quick Start](/componentone/docs/win/online-accordion/quickstart).

```csharp
c1Accordion1.RightToLeft = RightToLeft.Yes;
```