Difference between revisions of "UI.TimePicker"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2023.1<br/> '''Class:''' UI<br/> === Description === Creates a TimePicker widget. <syntaxhighlight lang="lua"> UI.TimePicker.new(...") |
|||
Line 23: | Line 23: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | {{ | + | {{UI}} |
Latest revision as of 07:21, 17 October 2023
Available since: Gideros 2023.1
Class: UI
Description
Creates a TimePicker widget.
UI.TimePicker.new(allowNil)
Parameters
allowNil: (bool) starts with an empty time (default = false)
Example
local gui = UI.TimePicker.new()
gui:setDimensions(96, 40)
gui:setColor(0x5c5c5c)
gui:setPosition(50, 50)
local screen=UI.Screen.new() -- needed to add the TimePicker
screen:ui(gui)
- UI.Accordion
- UI.Animation
- UI.Bar
- UI.Behavior
- UI.Border
- UI.BreadCrumbs
- UI.Builder
- UI.Button
- UI.Calendar
- UI.Checkbox
- UI.Combobox
- UI.ImageText
- UI.Keyboard
- UI.Label
- UI.Panel
- UI.Progress
- UI.Slider
- UI.Spinner
- UI.Splitpane
- UI.TabbedPane
- UI.Table
- UI.TextField
- UI.TimePicker
- UI.Toolbox
- UI.Tree
- UI.Viewport
- UI.WeekSchedule