Creation/Dev/Script/Client/GuiTextCtrl

From Graal Bible
Revision as of 20:08, 16 September 2006 by Stefan (talk | contribs) (Added picture, description and an example script)

Inherits from GuiControl.

Description

Guicontrol text.png

Simply displays some text. By using the variables textshadow, shadowoffset and shadowcolor of the profile you can improve the look.


Variables

text - string


Functions

gettext() - returns string

settext(str)


Events

onTextChanged(newtext) - the text has been modified


Example

new GuiTextCtrl("Test_Text") {
  profile = GuiBlueTextProfile;
  x = 10;
  y = 10;
  height = 20;
  text = "Text";
}