| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 | :github_url: hide.. DO NOT EDIT THIS FILE!!!.. Generated automatically from Godot engine sources... Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py... XML source: https://github.com/godotengine/godot/tree/master/doc/classes/CheckBox.xml... _class_CheckBox:CheckBox========**Inherits:** :ref:`Button<class_Button>` **<** :ref:`BaseButton<class_BaseButton>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`A button that represents a binary choice... rst-class:: classref-introduction-groupDescription-----------**CheckBox** allows the user to choose one of only two possible options. It's similar to :ref:`CheckButton<class_CheckButton>` in functionality, but it has a different appearance. To follow established UX patterns, it's recommended to use **CheckBox** when toggling it has **no** immediate effect on something. For example, it could be used when toggling it will only do something once a confirmation button is pressed.See also :ref:`BaseButton<class_BaseButton>` which contains common properties and methods associated with this node.When :ref:`BaseButton.button_group<class_BaseButton_property_button_group>` specifies a :ref:`ButtonGroup<class_ButtonGroup>`, **CheckBox** changes its appearance to that of a radio button and uses the various ``radio_*`` theme properties... rst-class:: classref-reftable-groupProperties----------.. table::   :widths: auto   +-------------------------------------------------------------------+-------------+-------------------------------------------------------------------------------+   | :ref:`HorizontalAlignment<enum_@GlobalScope_HorizontalAlignment>` | alignment   | ``0`` (overrides :ref:`Button<class_Button_property_alignment>`)              |   +-------------------------------------------------------------------+-------------+-------------------------------------------------------------------------------+   | :ref:`bool<class_bool>`                                           | toggle_mode | ``true`` (overrides :ref:`BaseButton<class_BaseButton_property_toggle_mode>`) |   +-------------------------------------------------------------------+-------------+-------------------------------------------------------------------------------+.. rst-class:: classref-reftable-groupTheme Properties----------------.. table::   :widths: auto   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Color<class_Color>`         | :ref:`checkbox_checked_color<class_CheckBox_theme_color_checkbox_checked_color>`     | ``Color(1, 1, 1, 1)`` |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Color<class_Color>`         | :ref:`checkbox_unchecked_color<class_CheckBox_theme_color_checkbox_unchecked_color>` | ``Color(1, 1, 1, 1)`` |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`int<class_int>`             | :ref:`check_v_offset<class_CheckBox_theme_constant_check_v_offset>`                  | ``0``                 |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`checked<class_CheckBox_theme_icon_checked>`                                    |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`checked_disabled<class_CheckBox_theme_icon_checked_disabled>`                  |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_checked<class_CheckBox_theme_icon_radio_checked>`                        |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_checked_disabled<class_CheckBox_theme_icon_radio_checked_disabled>`      |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_unchecked<class_CheckBox_theme_icon_radio_unchecked>`                    |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`radio_unchecked_disabled<class_CheckBox_theme_icon_radio_unchecked_disabled>`  |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked<class_CheckBox_theme_icon_unchecked>`                                |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+   | :ref:`Texture2D<class_Texture2D>` | :ref:`unchecked_disabled<class_CheckBox_theme_icon_unchecked_disabled>`              |                       |   +-----------------------------------+--------------------------------------------------------------------------------------+-----------------------+.. rst-class:: classref-section-separator----.. rst-class:: classref-descriptions-groupTheme Property Descriptions---------------------------.. _class_CheckBox_theme_color_checkbox_checked_color:.. rst-class:: classref-themeproperty:ref:`Color<class_Color>` **checkbox_checked_color** = ``Color(1, 1, 1, 1)`` :ref:`🔗<class_CheckBox_theme_color_checkbox_checked_color>`The color of the checked icon when the checkbox is pressed... rst-class:: classref-item-separator----.. _class_CheckBox_theme_color_checkbox_unchecked_color:.. rst-class:: classref-themeproperty:ref:`Color<class_Color>` **checkbox_unchecked_color** = ``Color(1, 1, 1, 1)`` :ref:`🔗<class_CheckBox_theme_color_checkbox_unchecked_color>`The color of the unchecked icon when the checkbox is not pressed... rst-class:: classref-item-separator----.. _class_CheckBox_theme_constant_check_v_offset:.. rst-class:: classref-themeproperty:ref:`int<class_int>` **check_v_offset** = ``0`` :ref:`🔗<class_CheckBox_theme_constant_check_v_offset>`The vertical offset used when rendering the check icons (in pixels)... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_checked:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **checked** :ref:`🔗<class_CheckBox_theme_icon_checked>`The check icon to display when the **CheckBox** is checked... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_checked_disabled:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **checked_disabled** :ref:`🔗<class_CheckBox_theme_icon_checked_disabled>`The check icon to display when the **CheckBox** is checked and is disabled... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_radio_checked:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **radio_checked** :ref:`🔗<class_CheckBox_theme_icon_radio_checked>`The check icon to display when the **CheckBox** is configured as a radio button and is checked... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_radio_checked_disabled:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **radio_checked_disabled** :ref:`🔗<class_CheckBox_theme_icon_radio_checked_disabled>`The check icon to display when the **CheckBox** is configured as a radio button, is disabled, and is unchecked... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_radio_unchecked:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **radio_unchecked** :ref:`🔗<class_CheckBox_theme_icon_radio_unchecked>`The check icon to display when the **CheckBox** is configured as a radio button and is unchecked... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_radio_unchecked_disabled:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **radio_unchecked_disabled** :ref:`🔗<class_CheckBox_theme_icon_radio_unchecked_disabled>`The check icon to display when the **CheckBox** is configured as a radio button, is disabled, and is unchecked... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_unchecked:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **unchecked** :ref:`🔗<class_CheckBox_theme_icon_unchecked>`The check icon to display when the **CheckBox** is unchecked... rst-class:: classref-item-separator----.. _class_CheckBox_theme_icon_unchecked_disabled:.. rst-class:: classref-themeproperty:ref:`Texture2D<class_Texture2D>` **unchecked_disabled** :ref:`🔗<class_CheckBox_theme_icon_unchecked_disabled>`The check icon to display when the **CheckBox** is unchecked and is disabled... |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`.. |required| replace:: :abbr:`required (This method is required to be overridden when extending its base class.)`.. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`.. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`.. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`.. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`.. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`.. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`.. |void| replace:: :abbr:`void (No return value.)`
 |