Skip to main content

Multi Line TextBox

Overview

A visible component for user input in multiple line

Component Properties

PropertyDescription
ColumnsIt sets the visible width of the Multi line textbox in terms of columns. By default, it is set to 40 columns, indicating that 40 characters will be visible horizontally before the Multi line textbox scrolls.
RowsIt sets the visible height of the Multi line textbox in terms of rows. By default, it is set to 5 rows, determining how many lines of text are initially visible before scrolling.
HintIt provides a hint or example text that appears in the Multi line textbox before the user enters their own text. It's a helpful way to guide users on what kind of information is expected.
valueIt represents the default value or initial content of the Multi line textbox. Users can edit or replace this text as needed.

Blocks

Events

On Got Focus

fires when focused on the multi line textbox

loading block...

On Lost Focus

fires when lost focused on the multi line textbox

loading block...

On Text Changed

fires everytime user enters the text in the multi line textbox

loading block...

variabletypedescription
valueStringThe changed value in the textbox.

Properties

value

Accepts: String

sets the value of multi line textbox

loading block...

value

Returns: String

gest the value of multi line textbox

loading block...

hint

Accepts: String

sets the hint of multi line textbox

loading block...

hint

Returns: String

gest the hint of multi line textbox

loading block...

hide

Accepts: Boolean

Hides the component if the input is true and shows it if the input is false

loading block...

hidden

Returns: Boolean

Returns true if the component is hidden and false if it is not

loading block...