13.1 Overview

Checkbox class derives from Area class and allows you to create checkbox widgets. A checkbox is a labelled box which by default is either on (checkmark is visible) or off (no checkmark). It is most commonly used to allow the user to toggle options. The XML tag's content is used as the checkbox label.

Here is an example of how to create a checkbox in XML:

 
<checkbox>Yes, I'm over 18 years old</checkbox>


Show TOC