Header: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "file:Header.jpg == Description == The Header control puts a simple header at the top of the screen. == Properties == Standard properties ar...")
 
No edit summary
Line 1: Line 1:
[[file:Header.jpg]]
[[file:Header.png]]


== Description ==
== Description ==

Revision as of 22:54, 9 June 2016

Description

The Header control puts a simple header at the top of the screen.


Properties

Standard properties are supported, plus:

innerHTML The text of the title as plain text. Design time and runtime.
textContent The text of the title as plain text. Design time.

Events

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

Example (Basic)

Function Header1_onclick()
  MsgBox "Header clicked!"
End Function

Example (JavaScript)

Header1.onclick = function() {
    NSB.MsgBox("Header clicked!");
};