CultureInfo and RTL

  • Thread starter Thread starter Oscar Thornell
  • Start date Start date
O

Oscar Thornell

Hi,

If I have the CultureInfo object is it possible to get information about the
reading order for that culture?
I.e Arabic/Hebrew RTL instead of the normal LTR...

Regards
/Oscar
 
Oscar,

Use the TextInfo property to get the TextInfo instance for the culture.
From that, you can call the IsRightToLeft property to get whether or not the
text reads right-to-left.

Hope this helps.
 
Great thanks!

/Oscar


Nicholas Paldino said:
Oscar,

Use the TextInfo property to get the TextInfo instance for the culture.
From that, you can call the IsRightToLeft property to get whether or not
the text reads right-to-left.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Oscar Thornell said:
Hi,

If I have the CultureInfo object is it possible to get information about
the reading order for that culture?
I.e Arabic/Hebrew RTL instead of the normal LTR...

Regards
/Oscar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top