2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 10:08:05 +02:00
<class name= "MarginContainer" inherits= "Container" 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 keeps a margin around its child controls.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-04-30 16:26:09 +02:00
[MarginContainer] adds an adjustable margin on each side of its child controls. The margins are added around all children, not around each individual one. To control the [MarginContainer]'s margins, use the [code]margin_*[/code] theme properties listed below.
[b]Note:[/b] The margin sizes are theme overrides, not normal properties. This is an example of how to change them in code:
2020-10-31 18:54:17 +01:00
[codeblocks]
[gdscript]
2021-03-04 17:17:40 +01:00
# This code sample assumes the current script is extending MarginContainer.
2019-06-19 10:29:35 +02:00
var margin_value = 100
2021-03-04 17:17:40 +01:00
add_theme_constant_override("margin_top", margin_value)
add_theme_constant_override("margin_left", margin_value)
add_theme_constant_override("margin_bottom", margin_value)
add_theme_constant_override("margin_right", margin_value)
2020-10-31 18:54:17 +01:00
[/gdscript]
[csharp]
2021-03-04 17:17:40 +01:00
// This code sample assumes the current script is extending MarginContainer.
2020-10-31 18:54:17 +01:00
int marginValue = 100;
2021-03-04 17:17:40 +01:00
AddThemeConstantOverride("margin_top", marginValue);
AddThemeConstantOverride("margin_left", marginValue);
AddThemeConstantOverride("margin_bottom", marginValue);
AddThemeConstantOverride("margin_right", marginValue);
2020-10-31 18:54:17 +01:00
[/csharp]
[/codeblocks]
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>
2017-09-12 22:42:36 +02:00
</tutorials>
<theme_items >
2021-08-04 18:54:41 +02:00
<theme_item name= "margin_bottom" data_type= "constant" type= "int" default= "0" >
2019-06-19 10:29:35 +02:00
All direct children of [MarginContainer] will have a bottom margin of [code]margin_bottom[/code] pixels.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-04 18:54:41 +02:00
<theme_item name= "margin_left" data_type= "constant" type= "int" default= "0" >
2019-06-19 10:29:35 +02:00
All direct children of [MarginContainer] will have a left margin of [code]margin_left[/code] pixels.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-04 18:54:41 +02:00
<theme_item name= "margin_right" data_type= "constant" type= "int" default= "0" >
2019-06-19 10:29:35 +02:00
All direct children of [MarginContainer] will have a right margin of [code]margin_right[/code] pixels.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-04 18:54:41 +02:00
<theme_item name= "margin_top" data_type= "constant" type= "int" default= "0" >
2019-06-19 10:29:35 +02:00
All direct children of [MarginContainer] will have a top margin of [code]margin_top[/code] pixels.
2017-09-12 22:42:36 +02:00
</theme_item>
</theme_items>
</class>