Skip to content

Latest commit

 

History

History
192 lines (113 loc) · 4.93 KB

GuiTextEditCtrl.rst

File metadata and controls

192 lines (113 loc) · 4.93 KB

GuiTextEditCtrl

A component that places a text entry box on the screen.

Inherit:

GuiTextCtrl

Description

A component that places a text entry box on the screen.

Fonts and sizes are changed using profiles. The text value can be set or entered by a user.

Example:

newGuiTextEditCtrl(MessageHud_Edit)
   {
       text = "Hello World";
       validate = "validateCommand();"escapeCommand = "escapeCommand();";
       historySize = "5";
       tabComplete = "true";
       deniedSound = "DeniedSoundProfile";
       sinkAllKeyEvents = "true";
       password = "true";
       passwordMask = "*";
        //Properties not specific to this control have been omitted from this example.
   };

Methods

Fields