Contents Up Previous Next

GUI Text Box functions and properties

Clickable property (inherited)
Enabled property (inherited)
Height property (inherited)
ID property (inherited)
OwningGUI property (inherited)
SetPosition (inherited)
SetSize (inherited)
Visible property (inherited)
Width property (inherited)
X property (inherited)
Y property (inherited)

Font property (text box)
Text property (text box)


Font property (text box)

(Formerly known as SetTextBoxFont, which is now obsolete)

int TextBox.Font
Gets/sets the font used by the specified text box. This might be useful if you need a player input text box to use a different font with foreign language translations, for example.

Example:

txtUserInput.Font = 1;
will change the txtUserInput text box to use Font 1.

See Also: Label.Font, TextBox.Text


Text property (text box)

(Formerly known as GetTextBoxText, which is now obsolete)
(Formerly known as SetTextBoxText, which is now obsolete)
(Formerly known as TextBox.GetText, which is now obsolete)
(Formerly known as TextBox.SetText, which is now obsolete)

String TextBox.Text;
Gets/sets the text box contents. This might be useful to reset the text box to blank after the user has typed something in, or to fill in a default value.

Example:

txtUserInput.Text = "";
will clear the txtUserInput text box.

See Also: TextBox.Font, String.CompareTo, Label.Text