2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "BoxContainer" inherits= "Container" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2017-09-16 07:26:04 +02:00
Base class for box containers.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-02-26 04:47:06 +01:00
Arranges child [Control] nodes vertically or horizontally, and rearranges them automatically when their minimum size changes.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_spacer" >
2021-03-25 12:19:51 +01:00
<return type= "Control" >
2017-09-12 22:42:36 +02:00
</return>
<argument index= "0" name= "begin" type= "bool" >
</argument>
<description >
2020-02-26 04:47:06 +01:00
Adds a [Control] node to the box as a spacer. If [code]begin[/code] is [code]true[/code], it will insert the [Control] node in front of all other children.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "alignment" type= "int" setter= "set_alignment" getter= "get_alignment" enum= "BoxContainer.AlignMode" default= "0" >
2020-02-26 04:47:06 +01:00
The alignment of the container's children (must be one of [constant ALIGN_BEGIN], [constant ALIGN_CENTER], or [constant ALIGN_END]).
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_BEGIN" value= "0" enum= "AlignMode" >
2017-09-16 07:26:04 +02:00
Aligns children with the beginning of the container.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_CENTER" value= "1" enum= "AlignMode" >
2017-09-16 07:26:04 +02:00
Aligns children with the center of the container.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ALIGN_END" value= "2" enum= "AlignMode" >
2017-09-16 07:26:04 +02:00
Aligns children with the end of the container.
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>