Skip to content
This repository was archived by the owner on Jun 14, 2021. It is now read-only.

Checkbox

Steve Ruiz edited this page Feb 3, 2018 · 2 revisions

A checkbox may either be checked or not.


Constructor

myCheckbox = new Checkbox
    #checked: false

Properties

checkbox.checked <boolean>

Whether the Checkbox is checked.

myCheckbox = new Checkbox
    checked: true

myCheckbox.checked = false

myCheckbox.on "change:checked", (checked) ->
    print 'Is checkbox checked? ' + checked
Clone this wiki locally