2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "GridContainer" inherits= "Container" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-09-07 01:41:08 +02:00
Grid container used to arrange Control-derived children in a grid like layout.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-09-07 01:41:08 +02:00
GridContainer will arrange its Control-derived children in a grid like structure, the grid columns are specified using the [member columns] property and the number of rows will be equal to the number of children in the container divided by the number of columns. For example, if the container has 5 children, and 2 columns, there will be 3 rows in the container.
2019-09-08 07:20:34 +02:00
Notice that grid layout will preserve the columns and rows for every size of the container, and that empty columns will be expanded automatically.
2020-09-07 01:41:08 +02:00
[b]Note:[/b] GridContainer only works with child nodes inheriting from Control. It won't rearrange child nodes inheriting from Node2D.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2022-04-21 08:16:02 +02:00
<link title= "GUI containers" > $DOCS_URL/tutorials/ui/gui_containers.html</link>
2020-10-01 10:34:47 +02:00
<link title= "OS Test Demo" > https://godotengine.org/asset-library/asset/677</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<members >
2019-06-29 12:38:01 +02:00
<member name= "columns" type= "int" setter= "set_columns" getter= "get_columns" default= "1" >
2020-09-07 01:41:08 +02:00
The number of columns in the [GridContainer]. If modified, [GridContainer] reorders its Control-derived children to accommodate the new layout.
2017-09-12 22:42:36 +02:00
</member>
</members>
<theme_items >
2022-04-14 23:20:28 +02:00
<theme_item name= "h_separation" data_type= "constant" type= "int" default= "4" >
2020-03-03 19:21:21 +01:00
The horizontal separation of children nodes.
2017-09-12 22:42:36 +02:00
</theme_item>
2022-04-14 23:20:28 +02:00
<theme_item name= "v_separation" data_type= "constant" type= "int" default= "4" >
2020-03-03 19:21:21 +01:00
The vertical separation of children nodes.
2017-09-12 22:42:36 +02:00
</theme_item>
</theme_items>
</class>