示例#1
0
 public override void SetTextDirection(SharedBasePage.TextDirection textDirection)
 {
     if (textDirection == SharedBasePage.TextDirection.RightToLeft)
     {
         _Control.ContentLangDirection = LanguageDirection.RightToLeft;
     }
     else             // default to LTR
     {
         _Control.ContentLangDirection = LanguageDirection.LeftToRight;
     }
 }
 /// <summary>
 /// Sets the direction of the text in the Text property.
 /// </summary>
 /// <param name="textDirection">The direction of the text in the Text property</param>
 public virtual void SetTextDirection(SharedBasePage.TextDirection textDirection)
 {
 }