NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TextBox Constructor

Initializes a new instance of the TextBox class.

[Visual Basic]
Public Sub New()
[C#]
public TextBox();
[C++]
public: TextBox();
[JScript]
public function TextBox();

Remarks

The parent container control defines the color and font settings for the TextBox.

Example [Visual Basic]

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

See Also

TextBox Class | TextBox Members | System.WinForms Namespace