summaryrefslogtreecommitdiff
path: root/doc/classes/BoxContainer.xml
blob: b509e83985d49ae5f5f73667fe2847368d003f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BoxContainer" inherits="Container" category="Core" version="3.0-stable">
	<brief_description>
		Base class for box containers.
	</brief_description>
	<description>
		Arranges child controls vertically or horizontally, and rearranges the controls automatically when their minimum size changes.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="add_spacer">
			<return type="void">
			</return>
			<argument index="0" name="begin" type="bool">
			</argument>
			<description>
				Adds a control to the box as a spacer. If [code]true[/code], [i]begin[/i] will insert the spacer control in front of other children.
			</description>
		</method>
	</methods>
	<members>
		<member name="alignment" type="int" setter="set_alignment" getter="get_alignment" enum="BoxContainer.AlignMode">
			The alignment of the container's children (must be one of ALIGN_BEGIN, ALIGN_CENTER, or ALIGN_END).
		</member>
	</members>
	<constants>
		<constant name="ALIGN_BEGIN" value="0" enum="AlignMode">
			Aligns children with the beginning of the container.
		</constant>
		<constant name="ALIGN_CENTER" value="1" enum="AlignMode">
			Aligns children with the center of the container.
		</constant>
		<constant name="ALIGN_END" value="2" enum="AlignMode">
			Aligns children with the end of the container.
		</constant>
	</constants>
</class>