TextBoxBase::AutoSize Property
Gets or sets a value indicating whether the height of the control automatically adjusts when the font assigned to the control is changed.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] property bool AutoSize { virtual bool get() override; virtual void set(bool value) override; }
Property Value
Type: System::Booleantrue if the height of the control automatically adjusts when the font is changed; otherwise, false. The default is true.
When you set the AutoSize property to true for a TextBox, when the Font changes, the TextBox expands or contracts the Height to accommodate the larger or smaller text. The Width of the TextBox does not change.
If you want to change the size of the control as the user enters text, you can use a RichTextBox control and use its ContentsResized event to change its size.
This example assumes that you have a form with two text boxes, two buttons, and click events for each of the buttons. The example demonstrates the AutoSize property by setting it to true for one text box and false for the other. When you click one button the text boxes are filled with a smaller text, and when you click the other button the text boxes are filled with larger text. The text box that has AutoSize set to true expands in height to accommodate the larger text. The width does not change.
Available since 1.1