class Button

Extends:
UIComponent

Description:

Button UI component that extends UIComponent class.
For more methods for this component check UIComponent class.

Constructor

constructor([text])

Button constructor.

Parameters:

Name Type Description

[text]

string

Button text

Members

Methods

From this class:

Inherited from UIComponent:

Examples:

this.button1 = new Button().text("Click Me");
this.button2 = new Button("Click Me");