Class TextBox
A basic edit box
public class TextBox : Label, ICloneable
- Inheritance
-
objectTextBox
- Implements
- Inherited Members
Constructors
TextBox()
public TextBox()
Properties
OnChanged
A Lua script to execute when the control's value has changed
[FileType("Lua")]
public string? OnChanged { get; set; }
Property Value
OnEnter
A Lua script to execute when the user presses the ENTER key
[FileType("Lua")]
public string? OnEnter { get; set; }
Property Value
Text
The text entered in the control
public override string Text { get; set; }
Property Value
Methods
Clone()
Creates a deep copy of this instance.
public override Control Clone()
Returns
CloneFromTo(TextBox, TextBox)
Copies all members declared by TextBox from one instance to another.
protected static void CloneFromTo(TextBox from, TextBox to)
Parameters
CloneTextBox()
Creates a deep copy of this TextBox instance.
public TextBox CloneTextBox()