.. 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/docs/gdscript/doc/classes/Tree.xml. .. _class_Tree: Tree ==== **Inherits:** :ref:`Control` **<** :ref:`CanvasItem` **<** :ref:`Node` **<** :ref:`Object` .. container:: contribute There is currently no description for this class. Please help us by :ref:`contributing one `! .. rst-class:: classref-reftable-group Properties ---------- .. table:: :widths: auto +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`allow_reselect` | ``false`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`allow_rmb_select` | ``false`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`allow_search` | ``true`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | clip_contents | ``true`` (overrides :ref:`Control`) | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`column_titles_visible` | ``false`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`int` | :ref:`columns` | ``1`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`int` | :ref:`drop_mode_flags` | ``0`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`enable_recursive_folding` | ``true`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`FocusMode` | focus_mode | ``2`` (overrides :ref:`Control`) | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`hide_folding` | ``false`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`hide_root` | ``false`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`scroll_horizontal_enabled` | ``true`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`bool` | :ref:`scroll_vertical_enabled` | ``true`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ | :ref:`SelectMode` | :ref:`select_mode` | ``0`` | +------------------------------------------+---------------------------------------------------------------------------------+---------------------------------------------------------------------------+ .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear` **(** **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TreeItem` | :ref:`create_item` **(** :ref:`TreeItem` parent=null, :ref:`int` index=-1 **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`deselect_all` **(** **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`edit_selected` **(** :ref:`bool` force_edit=false **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`ensure_cursor_is_visible` **(** **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_button_id_at_position` **(** :ref:`Vector2` position **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_column_at_position` **(** :ref:`Vector2` position **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_column_expand_ratio` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_column_title` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`HorizontalAlignment` | :ref:`get_column_title_alignment` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TextDirection` | :ref:`get_column_title_direction` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`String` | :ref:`get_column_title_language` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_column_width` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Rect2` | :ref:`get_custom_popup_rect` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_drop_section_at_position` **(** :ref:`Vector2` position **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TreeItem` | :ref:`get_edited` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_edited_column` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Rect2` | :ref:`get_item_area_rect` **(** :ref:`TreeItem` item, :ref:`int` column=-1, :ref:`int` button_index=-1 **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TreeItem` | :ref:`get_item_at_position` **(** :ref:`Vector2` position **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TreeItem` | :ref:`get_next_selected` **(** :ref:`TreeItem` from **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_pressed_button` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TreeItem` | :ref:`get_root` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Vector2` | :ref:`get_scroll` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`TreeItem` | :ref:`get_selected` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_selected_column` **(** **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_column_clipping_content` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_column_expanding` **(** :ref:`int` column **)** |const| | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`scroll_to_item` **(** :ref:`TreeItem` item, :ref:`bool` center_on_item=false **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_clip_content` **(** :ref:`int` column, :ref:`bool` enable **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_custom_minimum_width` **(** :ref:`int` column, :ref:`int` min_width **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_expand` **(** :ref:`int` column, :ref:`bool` expand **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_expand_ratio` **(** :ref:`int` column, :ref:`int` ratio **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_title` **(** :ref:`int` column, :ref:`String` title **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_title_alignment` **(** :ref:`int` column, :ref:`HorizontalAlignment` title_alignment **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_title_direction` **(** :ref:`int` column, :ref:`TextDirection` direction **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_column_title_language` **(** :ref:`int` column, :ref:`String` language **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`set_selected` **(** :ref:`TreeItem` item, :ref:`int` column **)** | +-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ .. rst-class:: classref-reftable-group Theme Properties ---------------- .. table:: :widths: auto +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`children_hl_line_color` | ``Color(0.27, 0.27, 0.27, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`custom_button_font_highlight` | ``Color(0.95, 0.95, 0.95, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`drop_position_color` | ``Color(1, 1, 1, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`font_color` | ``Color(0.7, 0.7, 0.7, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`font_disabled_color` | ``Color(0.875, 0.875, 0.875, 0.5)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`font_outline_color` | ``Color(0, 0, 0, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`font_selected_color` | ``Color(1, 1, 1, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`guide_color` | ``Color(0.7, 0.7, 0.7, 0.25)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`parent_hl_line_color` | ``Color(0.27, 0.27, 0.27, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`relationship_line_color` | ``Color(0.27, 0.27, 0.27, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Color` | :ref:`title_button_color` | ``Color(0.875, 0.875, 0.875, 1)`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`button_margin` | ``4`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`children_hl_line_width` | ``1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`draw_guides` | ``1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`draw_relationship_lines` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`h_separation` | ``4`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`icon_max_width` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`inner_item_margin_bottom` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`inner_item_margin_left` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`inner_item_margin_right` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`inner_item_margin_top` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`item_margin` | ``16`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`outline_size` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`parent_hl_line_margin` | ``0`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`parent_hl_line_width` | ``1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`relationship_line_width` | ``1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scroll_border` | ``4`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scroll_speed` | ``12`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scrollbar_h_separation` | ``4`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scrollbar_margin_bottom` | ``-1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scrollbar_margin_left` | ``-1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scrollbar_margin_right` | ``-1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scrollbar_margin_top` | ``-1`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`scrollbar_v_separation` | ``4`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`v_separation` | ``4`` | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Font` | :ref:`font` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Font` | :ref:`title_button_font` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`font_size` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`int` | :ref:`title_button_font_size` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`arrow` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`arrow_collapsed` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`arrow_collapsed_mirrored` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`checked` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`checked_disabled` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`indeterminate` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`indeterminate_disabled` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`select_arrow` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`unchecked` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`unchecked_disabled` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`Texture2D` | :ref:`updown` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`button_pressed` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`cursor` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`cursor_unfocused` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`custom_button` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`custom_button_hover` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`custom_button_pressed` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`focus` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`panel` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`selected` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`selected_focus` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`title_button_hover` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`title_button_normal` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ | :ref:`StyleBox` | :ref:`title_button_pressed` | | +-----------------------------------+------------------------------------------------------------------------------------------+-------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Signals ------- .. _class_Tree_signal_button_clicked: .. rst-class:: classref-signal **button_clicked** **(** :ref:`TreeItem` item, :ref:`int` column, :ref:`int` id, :ref:`int` mouse_button_index **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_cell_selected: .. rst-class:: classref-signal **cell_selected** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_check_propagated_to_item: .. rst-class:: classref-signal **check_propagated_to_item** **(** :ref:`TreeItem` item, :ref:`int` column **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_column_title_clicked: .. rst-class:: classref-signal **column_title_clicked** **(** :ref:`int` column, :ref:`int` mouse_button_index **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_custom_item_clicked: .. rst-class:: classref-signal **custom_item_clicked** **(** :ref:`int` mouse_button_index **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_custom_popup_edited: .. rst-class:: classref-signal **custom_popup_edited** **(** :ref:`bool` arrow_clicked **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_empty_clicked: .. rst-class:: classref-signal **empty_clicked** **(** :ref:`Vector2` click_position, :ref:`int` mouse_button_index **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_item_activated: .. rst-class:: classref-signal **item_activated** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_item_collapsed: .. rst-class:: classref-signal **item_collapsed** **(** :ref:`TreeItem` item **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_item_edited: .. rst-class:: classref-signal **item_edited** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_item_icon_double_clicked: .. rst-class:: classref-signal **item_icon_double_clicked** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_item_mouse_selected: .. rst-class:: classref-signal **item_mouse_selected** **(** :ref:`Vector2` mouse_position, :ref:`int` mouse_button_index **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_item_selected: .. rst-class:: classref-signal **item_selected** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_multi_selected: .. rst-class:: classref-signal **multi_selected** **(** :ref:`TreeItem` item, :ref:`int` column, :ref:`bool` selected **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_signal_nothing_selected: .. rst-class:: classref-signal **nothing_selected** **(** **)** .. container:: contribute There is currently no description for this signal. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Enumerations ------------ .. _enum_Tree_SelectMode: .. rst-class:: classref-enumeration enum **SelectMode**: .. _class_Tree_constant_SELECT_SINGLE: .. rst-class:: classref-enumeration-constant :ref:`SelectMode` **SELECT_SINGLE** = ``0`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_Tree_constant_SELECT_ROW: .. rst-class:: classref-enumeration-constant :ref:`SelectMode` **SELECT_ROW** = ``1`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_Tree_constant_SELECT_MULTI: .. rst-class:: classref-enumeration-constant :ref:`SelectMode` **SELECT_MULTI** = ``2`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _enum_Tree_DropModeFlags: .. rst-class:: classref-enumeration enum **DropModeFlags**: .. _class_Tree_constant_DROP_MODE_DISABLED: .. rst-class:: classref-enumeration-constant :ref:`DropModeFlags` **DROP_MODE_DISABLED** = ``0`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_Tree_constant_DROP_MODE_ON_ITEM: .. rst-class:: classref-enumeration-constant :ref:`DropModeFlags` **DROP_MODE_ON_ITEM** = ``1`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. _class_Tree_constant_DROP_MODE_INBETWEEN: .. rst-class:: classref-enumeration-constant :ref:`DropModeFlags` **DROP_MODE_INBETWEEN** = ``2`` .. container:: contribute There is currently no description for this enum. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Property Descriptions --------------------- .. _class_Tree_property_allow_reselect: .. rst-class:: classref-property :ref:`bool` **allow_reselect** = ``false`` .. rst-class:: classref-property-setget - void **set_allow_reselect** **(** :ref:`bool` value **)** - :ref:`bool` **get_allow_reselect** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_allow_rmb_select: .. rst-class:: classref-property :ref:`bool` **allow_rmb_select** = ``false`` .. rst-class:: classref-property-setget - void **set_allow_rmb_select** **(** :ref:`bool` value **)** - :ref:`bool` **get_allow_rmb_select** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_allow_search: .. rst-class:: classref-property :ref:`bool` **allow_search** = ``true`` .. rst-class:: classref-property-setget - void **set_allow_search** **(** :ref:`bool` value **)** - :ref:`bool` **get_allow_search** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_column_titles_visible: .. rst-class:: classref-property :ref:`bool` **column_titles_visible** = ``false`` .. rst-class:: classref-property-setget - void **set_column_titles_visible** **(** :ref:`bool` value **)** - :ref:`bool` **are_column_titles_visible** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_columns: .. rst-class:: classref-property :ref:`int` **columns** = ``1`` .. rst-class:: classref-property-setget - void **set_columns** **(** :ref:`int` value **)** - :ref:`int` **get_columns** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_drop_mode_flags: .. rst-class:: classref-property :ref:`int` **drop_mode_flags** = ``0`` .. rst-class:: classref-property-setget - void **set_drop_mode_flags** **(** :ref:`int` value **)** - :ref:`int` **get_drop_mode_flags** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_enable_recursive_folding: .. rst-class:: classref-property :ref:`bool` **enable_recursive_folding** = ``true`` .. rst-class:: classref-property-setget - void **set_enable_recursive_folding** **(** :ref:`bool` value **)** - :ref:`bool` **is_recursive_folding_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_hide_folding: .. rst-class:: classref-property :ref:`bool` **hide_folding** = ``false`` .. rst-class:: classref-property-setget - void **set_hide_folding** **(** :ref:`bool` value **)** - :ref:`bool` **is_folding_hidden** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_hide_root: .. rst-class:: classref-property :ref:`bool` **hide_root** = ``false`` .. rst-class:: classref-property-setget - void **set_hide_root** **(** :ref:`bool` value **)** - :ref:`bool` **is_root_hidden** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_scroll_horizontal_enabled: .. rst-class:: classref-property :ref:`bool` **scroll_horizontal_enabled** = ``true`` .. rst-class:: classref-property-setget - void **set_h_scroll_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_h_scroll_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_scroll_vertical_enabled: .. rst-class:: classref-property :ref:`bool` **scroll_vertical_enabled** = ``true`` .. rst-class:: classref-property-setget - void **set_v_scroll_enabled** **(** :ref:`bool` value **)** - :ref:`bool` **is_v_scroll_enabled** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_property_select_mode: .. rst-class:: classref-property :ref:`SelectMode` **select_mode** = ``0`` .. rst-class:: classref-property-setget - void **set_select_mode** **(** :ref:`SelectMode` value **)** - :ref:`SelectMode` **get_select_mode** **(** **)** .. container:: contribute There is currently no description for this property. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_Tree_method_clear: .. rst-class:: classref-method void **clear** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_create_item: .. rst-class:: classref-method :ref:`TreeItem` **create_item** **(** :ref:`TreeItem` parent=null, :ref:`int` index=-1 **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_deselect_all: .. rst-class:: classref-method void **deselect_all** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_edit_selected: .. rst-class:: classref-method :ref:`bool` **edit_selected** **(** :ref:`bool` force_edit=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_ensure_cursor_is_visible: .. rst-class:: classref-method void **ensure_cursor_is_visible** **(** **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_button_id_at_position: .. rst-class:: classref-method :ref:`int` **get_button_id_at_position** **(** :ref:`Vector2` position **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_at_position: .. rst-class:: classref-method :ref:`int` **get_column_at_position** **(** :ref:`Vector2` position **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_expand_ratio: .. rst-class:: classref-method :ref:`int` **get_column_expand_ratio** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_title: .. rst-class:: classref-method :ref:`String` **get_column_title** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_title_alignment: .. rst-class:: classref-method :ref:`HorizontalAlignment` **get_column_title_alignment** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_title_direction: .. rst-class:: classref-method :ref:`TextDirection` **get_column_title_direction** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_title_language: .. rst-class:: classref-method :ref:`String` **get_column_title_language** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_column_width: .. rst-class:: classref-method :ref:`int` **get_column_width** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_custom_popup_rect: .. rst-class:: classref-method :ref:`Rect2` **get_custom_popup_rect** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_drop_section_at_position: .. rst-class:: classref-method :ref:`int` **get_drop_section_at_position** **(** :ref:`Vector2` position **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_edited: .. rst-class:: classref-method :ref:`TreeItem` **get_edited** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_edited_column: .. rst-class:: classref-method :ref:`int` **get_edited_column** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_item_area_rect: .. rst-class:: classref-method :ref:`Rect2` **get_item_area_rect** **(** :ref:`TreeItem` item, :ref:`int` column=-1, :ref:`int` button_index=-1 **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_item_at_position: .. rst-class:: classref-method :ref:`TreeItem` **get_item_at_position** **(** :ref:`Vector2` position **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_next_selected: .. rst-class:: classref-method :ref:`TreeItem` **get_next_selected** **(** :ref:`TreeItem` from **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_pressed_button: .. rst-class:: classref-method :ref:`int` **get_pressed_button** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_root: .. rst-class:: classref-method :ref:`TreeItem` **get_root** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_scroll: .. rst-class:: classref-method :ref:`Vector2` **get_scroll** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_selected: .. rst-class:: classref-method :ref:`TreeItem` **get_selected** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_get_selected_column: .. rst-class:: classref-method :ref:`int` **get_selected_column** **(** **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_is_column_clipping_content: .. rst-class:: classref-method :ref:`bool` **is_column_clipping_content** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_is_column_expanding: .. rst-class:: classref-method :ref:`bool` **is_column_expanding** **(** :ref:`int` column **)** |const| .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_scroll_to_item: .. rst-class:: classref-method void **scroll_to_item** **(** :ref:`TreeItem` item, :ref:`bool` center_on_item=false **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_clip_content: .. rst-class:: classref-method void **set_column_clip_content** **(** :ref:`int` column, :ref:`bool` enable **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_custom_minimum_width: .. rst-class:: classref-method void **set_column_custom_minimum_width** **(** :ref:`int` column, :ref:`int` min_width **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_expand: .. rst-class:: classref-method void **set_column_expand** **(** :ref:`int` column, :ref:`bool` expand **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_expand_ratio: .. rst-class:: classref-method void **set_column_expand_ratio** **(** :ref:`int` column, :ref:`int` ratio **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_title: .. rst-class:: classref-method void **set_column_title** **(** :ref:`int` column, :ref:`String` title **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_title_alignment: .. rst-class:: classref-method void **set_column_title_alignment** **(** :ref:`int` column, :ref:`HorizontalAlignment` title_alignment **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_title_direction: .. rst-class:: classref-method void **set_column_title_direction** **(** :ref:`int` column, :ref:`TextDirection` direction **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_column_title_language: .. rst-class:: classref-method void **set_column_title_language** **(** :ref:`int` column, :ref:`String` language **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_method_set_selected: .. rst-class:: classref-method void **set_selected** **(** :ref:`TreeItem` item, :ref:`int` column **)** .. container:: contribute There is currently no description for this method. Please help us by :ref:`contributing one `! .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Theme Property Descriptions --------------------------- .. _class_Tree_theme_color_children_hl_line_color: .. rst-class:: classref-themeproperty :ref:`Color` **children_hl_line_color** = ``Color(0.27, 0.27, 0.27, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_custom_button_font_highlight: .. rst-class:: classref-themeproperty :ref:`Color` **custom_button_font_highlight** = ``Color(0.95, 0.95, 0.95, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_drop_position_color: .. rst-class:: classref-themeproperty :ref:`Color` **drop_position_color** = ``Color(1, 1, 1, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_font_color: .. rst-class:: classref-themeproperty :ref:`Color` **font_color** = ``Color(0.7, 0.7, 0.7, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_font_disabled_color: .. rst-class:: classref-themeproperty :ref:`Color` **font_disabled_color** = ``Color(0.875, 0.875, 0.875, 0.5)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_font_outline_color: .. rst-class:: classref-themeproperty :ref:`Color` **font_outline_color** = ``Color(0, 0, 0, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_font_selected_color: .. rst-class:: classref-themeproperty :ref:`Color` **font_selected_color** = ``Color(1, 1, 1, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_guide_color: .. rst-class:: classref-themeproperty :ref:`Color` **guide_color** = ``Color(0.7, 0.7, 0.7, 0.25)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_parent_hl_line_color: .. rst-class:: classref-themeproperty :ref:`Color` **parent_hl_line_color** = ``Color(0.27, 0.27, 0.27, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_relationship_line_color: .. rst-class:: classref-themeproperty :ref:`Color` **relationship_line_color** = ``Color(0.27, 0.27, 0.27, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_color_title_button_color: .. rst-class:: classref-themeproperty :ref:`Color` **title_button_color** = ``Color(0.875, 0.875, 0.875, 1)`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_button_margin: .. rst-class:: classref-themeproperty :ref:`int` **button_margin** = ``4`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_children_hl_line_width: .. rst-class:: classref-themeproperty :ref:`int` **children_hl_line_width** = ``1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_draw_guides: .. rst-class:: classref-themeproperty :ref:`int` **draw_guides** = ``1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_draw_relationship_lines: .. rst-class:: classref-themeproperty :ref:`int` **draw_relationship_lines** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_h_separation: .. rst-class:: classref-themeproperty :ref:`int` **h_separation** = ``4`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_icon_max_width: .. rst-class:: classref-themeproperty :ref:`int` **icon_max_width** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_inner_item_margin_bottom: .. rst-class:: classref-themeproperty :ref:`int` **inner_item_margin_bottom** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_inner_item_margin_left: .. rst-class:: classref-themeproperty :ref:`int` **inner_item_margin_left** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_inner_item_margin_right: .. rst-class:: classref-themeproperty :ref:`int` **inner_item_margin_right** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_inner_item_margin_top: .. rst-class:: classref-themeproperty :ref:`int` **inner_item_margin_top** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_item_margin: .. rst-class:: classref-themeproperty :ref:`int` **item_margin** = ``16`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_outline_size: .. rst-class:: classref-themeproperty :ref:`int` **outline_size** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_parent_hl_line_margin: .. rst-class:: classref-themeproperty :ref:`int` **parent_hl_line_margin** = ``0`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_parent_hl_line_width: .. rst-class:: classref-themeproperty :ref:`int` **parent_hl_line_width** = ``1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_relationship_line_width: .. rst-class:: classref-themeproperty :ref:`int` **relationship_line_width** = ``1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scroll_border: .. rst-class:: classref-themeproperty :ref:`int` **scroll_border** = ``4`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scroll_speed: .. rst-class:: classref-themeproperty :ref:`int` **scroll_speed** = ``12`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scrollbar_h_separation: .. rst-class:: classref-themeproperty :ref:`int` **scrollbar_h_separation** = ``4`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scrollbar_margin_bottom: .. rst-class:: classref-themeproperty :ref:`int` **scrollbar_margin_bottom** = ``-1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scrollbar_margin_left: .. rst-class:: classref-themeproperty :ref:`int` **scrollbar_margin_left** = ``-1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scrollbar_margin_right: .. rst-class:: classref-themeproperty :ref:`int` **scrollbar_margin_right** = ``-1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scrollbar_margin_top: .. rst-class:: classref-themeproperty :ref:`int` **scrollbar_margin_top** = ``-1`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_scrollbar_v_separation: .. rst-class:: classref-themeproperty :ref:`int` **scrollbar_v_separation** = ``4`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_constant_v_separation: .. rst-class:: classref-themeproperty :ref:`int` **v_separation** = ``4`` .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_font_font: .. rst-class:: classref-themeproperty :ref:`Font` **font** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_font_title_button_font: .. rst-class:: classref-themeproperty :ref:`Font` **title_button_font** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_font_size_font_size: .. rst-class:: classref-themeproperty :ref:`int` **font_size** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_font_size_title_button_font_size: .. rst-class:: classref-themeproperty :ref:`int` **title_button_font_size** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_arrow: .. rst-class:: classref-themeproperty :ref:`Texture2D` **arrow** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_arrow_collapsed: .. rst-class:: classref-themeproperty :ref:`Texture2D` **arrow_collapsed** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_arrow_collapsed_mirrored: .. rst-class:: classref-themeproperty :ref:`Texture2D` **arrow_collapsed_mirrored** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_checked: .. rst-class:: classref-themeproperty :ref:`Texture2D` **checked** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_checked_disabled: .. rst-class:: classref-themeproperty :ref:`Texture2D` **checked_disabled** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_indeterminate: .. rst-class:: classref-themeproperty :ref:`Texture2D` **indeterminate** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_indeterminate_disabled: .. rst-class:: classref-themeproperty :ref:`Texture2D` **indeterminate_disabled** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_select_arrow: .. rst-class:: classref-themeproperty :ref:`Texture2D` **select_arrow** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_unchecked: .. rst-class:: classref-themeproperty :ref:`Texture2D` **unchecked** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_unchecked_disabled: .. rst-class:: classref-themeproperty :ref:`Texture2D` **unchecked_disabled** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_icon_updown: .. rst-class:: classref-themeproperty :ref:`Texture2D` **updown** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_button_pressed: .. rst-class:: classref-themeproperty :ref:`StyleBox` **button_pressed** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_cursor: .. rst-class:: classref-themeproperty :ref:`StyleBox` **cursor** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_cursor_unfocused: .. rst-class:: classref-themeproperty :ref:`StyleBox` **cursor_unfocused** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_custom_button: .. rst-class:: classref-themeproperty :ref:`StyleBox` **custom_button** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_custom_button_hover: .. rst-class:: classref-themeproperty :ref:`StyleBox` **custom_button_hover** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_custom_button_pressed: .. rst-class:: classref-themeproperty :ref:`StyleBox` **custom_button_pressed** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_focus: .. rst-class:: classref-themeproperty :ref:`StyleBox` **focus** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_panel: .. rst-class:: classref-themeproperty :ref:`StyleBox` **panel** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_selected: .. rst-class:: classref-themeproperty :ref:`StyleBox` **selected** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_selected_focus: .. rst-class:: classref-themeproperty :ref:`StyleBox` **selected_focus** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_title_button_hover: .. rst-class:: classref-themeproperty :ref:`StyleBox` **title_button_hover** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_title_button_normal: .. rst-class:: classref-themeproperty :ref:`StyleBox` **title_button_normal** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. rst-class:: classref-item-separator ---- .. _class_Tree_theme_style_title_button_pressed: .. rst-class:: classref-themeproperty :ref:`StyleBox` **title_button_pressed** .. container:: contribute There is currently no description for this theme property. Please help us by :ref:`contributing one `! .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |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.)`