gui_getcheckbox - Open-Turing-Project/TuringDocs GitHub Wiki
#GUI.GetCheckBox
##Syntax GUI.GetCheckBox (widgetID : int) : boolean
##Description Returns the status of the check box specified by widgetID. If the check box is set (has an X in it), GetCheckBox returns true, otherwise it returns false.
##Example See GUI.CreateCheckBox for an example of GUI.GetCheckBox.
##Status Exported qualified.
This means that you can only call the function by calling GUI.GetCheckBox, not by calling GetCheckBox.
##See also GUI.CreateCheckBox.