HI Is there a way to get FlowDirection for the current culture.
I set a property like
public string FlowDirection { get { return
I do not want hardcode something like
if (currentLanguage.ToLower().StartsWith("ar")) { return FlowDirection.RightToLeft; } else { return FlowDirection.LeftToRight; }
source share