Uses of Class
com.googlecode.lanterna.gui2.TextBox.Style
-
Packages that use TextBox.Style Package Description com.googlecode.lanterna.gui2 -
-
Uses of TextBox.Style in com.googlecode.lanterna.gui2
Fields in com.googlecode.lanterna.gui2 declared as TextBox.Style Modifier and Type Field Description private TextBox.Style
TextBox. style
Methods in com.googlecode.lanterna.gui2 that return TextBox.Style Modifier and Type Method Description static TextBox.Style
TextBox.Style. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TextBox.Style[]
TextBox.Style. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.googlecode.lanterna.gui2 with parameters of type TextBox.Style Constructor Description TextBox(TerminalSize preferredSize, TextBox.Style style)
Creates a new emptyTextBox
with a specific size and styleTextBox(TerminalSize preferredSize, java.lang.String initialContent, TextBox.Style style)
Main constructor of theTextBox
which decides size, initial content and styleTextBox(java.lang.String initialContent, TextBox.Style style)
Creates aTextBox
that has an initial content and attempting to be big enough to display the whole text at once without scrollbars.
-