Label

From NSB App Studio
Revision as of 21:54, 11 January 2018 by Ghenne (talk | contribs) (→‎Properties)
Jump to navigation Jump to search

Description

The Label control is used to display text and headings. The text cannot be modified.

While a variety of different events are available, the usual response to clicking a Label is to call the function <buttonID>_onclick().

To add a Label to your app, choose the Label icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need.

Properties

Standard properties are supported, plus:

Caption The caption of the label. Same as textContent. Runtime only.
innerHTML The text of the title in HTML format. Runtime only.
text The text of the title. Same as textContent. Runtime only.
textContent The text of the title. HTML OK at Design Time.
verticalAlign The vertical alignment of the text: top, center, or bottom. Do not use for multi line labels. Do not use a percentage based height.

Change the color of a label

Label1.style.color = "red"

Events

Standard events are supported. However, events are not usually associated with the control.