2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-05 22:07:03 +02:00
<class name= "GridContainer" inherits= "Container" version= "4.2" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2023-04-30 16:26:09 +02:00
A container that arranges its child controls in a grid layout.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-04-30 16:26:09 +02:00
[GridContainer] arranges its child controls in a grid layout. The number of columns is specified by the [member columns] property, whereas the number of rows depends on how many are needed for the child controls. The number of rows and columns is preserved for every size of the container.
[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 >
2023-04-30 16:26:09 +02:00
<link title= "Using 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>