Difference between revisions of "UI.Checkbox"

From GiderosMobile
 
Line 38: Line 38:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
{{GIDEROS IMPORTANT LINKS}}
+
{{UI}}

Latest revision as of 08:18, 17 October 2023

Available since: Gideros 2023.1
Class: UI

Description

Creates Checkbox widgets. The widget can be a Checkbox or a Radio.

UI.Checkbox.new()

Examples

A Checkbox

local gui = UI.Checkbox.new()
gui:setPosition(50, 50)
stage:addChild(gui)

gui:setTicked(true)
gui:setTristate(true)

function gui:onWidgetChange(w)
	print(w:isTicked(), w:isThird())
end

A Radio

local gui = UI.Radio.new()
gui:setPosition(50, 50)
stage:addChild(gui)

gui:setTicked(true)
gui:setTristate(true)

function gui:onWidgetChange(w)
	print(w:isTicked(), w:isThird())
end