TextAlign - Right

  • Thread starter Thread starter Keith
  • Start date Start date
K

Keith

How can one align text on the right side or center - using
a textbox control?

It's not a property option and when I try to code the
change - either I'm doing it incorrectly or it does not
acknowledge my align right command.

thank you.
 
So what happens when you do this:
textBox1.TextAlign = HorizontalAlignment.Right

(You may need to make the textbox multiline)
 
Alex - actually - I did try that - but the great tip that
you provided (change the textbox to a multiline) proved to
be the fix.

Thank you SO much - it would have taken me a LONG time to
figure that one out.
 
Back
Top