Initializes a new instance of the TextBox class.
[Visual Basic] Public Sub New() [C#] public TextBox(); [C++] public: TextBox(); [JScript] public function TextBox();
The parent container control defines the color and font settings for the TextBox.
The following example creates a new instance of the TextBox control and assigns a string to the control's Text property.
[Visual Basic]
Public Sub CreateTextBoxControl() ' Create a new TextBox control using this constructor. Dim Text1 As TextBox Set Text1 = New TextBox() ' Assign a string of text to the new TextBox control. Text1.Text = "Hello World!" ' Code goes here to add the control to the form's control collection. End Sub