class_vsplitcontainer.rst 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/VSplitContainer.xml.
  6. .. _class_VSplitContainer:
  7. VSplitContainer
  8. ===============
  9. **Inherits:** :ref:`SplitContainer<class_SplitContainer>` **<** :ref:`Container<class_Container>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. Vertical split container.
  11. Description
  12. -----------
  13. Vertical split container. See :ref:`SplitContainer<class_SplitContainer>`. This goes from top to bottom.
  14. Tutorials
  15. ---------
  16. - :doc:`GUI containers <../tutorials/ui/gui_containers>`
  17. Theme Properties
  18. ----------------
  19. +-----------------------------------+--------------------------------------------------------------------+--------+
  20. | :ref:`int<class_int>` | :ref:`autohide<class_VSplitContainer_theme_constant_autohide>` | ``1`` |
  21. +-----------------------------------+--------------------------------------------------------------------+--------+
  22. | :ref:`int<class_int>` | :ref:`separation<class_VSplitContainer_theme_constant_separation>` | ``12`` |
  23. +-----------------------------------+--------------------------------------------------------------------+--------+
  24. | :ref:`Texture2D<class_Texture2D>` | :ref:`grabber<class_VSplitContainer_theme_icon_grabber>` | |
  25. +-----------------------------------+--------------------------------------------------------------------+--------+
  26. Theme Property Descriptions
  27. ---------------------------
  28. .. _class_VSplitContainer_theme_constant_autohide:
  29. - :ref:`int<class_int>` **autohide**
  30. +-----------+-------+
  31. | *Default* | ``1`` |
  32. +-----------+-------+
  33. Boolean value. If 1 (``true``), the grabber will hide automatically when it isn't under the cursor. If 0 (``false``), it's always visible.
  34. ----
  35. .. _class_VSplitContainer_theme_constant_separation:
  36. - :ref:`int<class_int>` **separation**
  37. +-----------+--------+
  38. | *Default* | ``12`` |
  39. +-----------+--------+
  40. The space between sides of the container.
  41. ----
  42. .. _class_VSplitContainer_theme_icon_grabber:
  43. - :ref:`Texture2D<class_Texture2D>` **grabber**
  44. The icon used for the grabber drawn in the middle area.
  45. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  46. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  47. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  48. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  49. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  50. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`