I understand that by using NSTextAlignment.Natural
you allow a label draw it's content using the default righting direction for a given language, which helps heaps with localisation, allowing the label to draw it's text from left-to-right in languages like english/spanish/etc..., and from right-to-left in languages like arabic. Now my question is that I want to have a label draw in the opposite direction to .Natural, so in a left-to-right language the text should align to the right and in right-to-left languages it should align to the left.
I cannot find an NSTextAlignment enumeration option for this. so I was hoping somebody would give me some advice on how to accomplish this?
Many thanks!