TextBox Size.Height

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any way to control a TextBox Size property's Height? Besides making
it Multiline?
Everytime I set the Size, it always reverts back to Size.Height = 20 (or
whatever value based on the current font, I think). I've tried setting the
Min/Max Size but that only seems to hold during design time.
 
Figured it out based on another post in this forum.
TextBoxBase.AutoSize = false

However, things might get messy if you view the textbox in designer.
 
Back
Top