FlipToggle: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 18: | Line 18: | ||
| setValue() || Set the value to one of the titles. | | setValue() || Set the value to one of the titles. | ||
|- | |- | ||
| titleLeft || The name of the left title. Design only. | | titleLeft || The name of the left title. Limited to about 5 characters. Design only. | ||
|- | |- | ||
| titleRight || The name of the left title. Design only. | | titleRight || The name of the left title. Limited to about 5 characters. Design only. | ||
|} | |} | ||
Revision as of 14:01, 16 February 2014
Description
The FlipToggle control is a slider that changes between Off and On.
To add a FlipToggle to your app, choose the FlipToggle icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need, then add functions to your code to respond to the events that come from the FlipToggle: usually, just onclick.
Properties
Standard properties are supported, plus:
value() | The value of the control. |
setting() | Current setting of control. True/False. |
setValue() | Set the value to one of the titles. |
titleLeft | The name of the left title. Limited to about 5 characters. Design only. |
titleRight | The name of the left title. Limited to about 5 characters. Design only. |
Events
Standard events are supported.
Example (Basic)
Print FlipToggle1.value()
Example (JavaScript)
NSB.Print(FlipToggle1.value());
Output
Off