mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
doc: Remove setters and getters now exposed via properties/members
This commit is contained in:
@@ -14,20 +14,6 @@
|
||||
<demos>
|
||||
</demos>
|
||||
<methods>
|
||||
<method name="are_tabs_visible" qualifiers="const">
|
||||
<return type="bool">
|
||||
</return>
|
||||
<description>
|
||||
Returns [code]true[/code] if the tabs are visible.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_current_tab" qualifiers="const">
|
||||
<return type="int">
|
||||
</return>
|
||||
<description>
|
||||
Returns the currently visible tab's index.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_current_tab_control" qualifiers="const">
|
||||
<return type="Control">
|
||||
</return>
|
||||
@@ -49,13 +35,6 @@
|
||||
Returns the previously active tab index.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_tab_align" qualifiers="const">
|
||||
<return type="int" enum="TabContainer.TabAlign">
|
||||
</return>
|
||||
<description>
|
||||
Returns the tab alignment. See the [code]ALIGN_*[/code] constants.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_tab_control" qualifiers="const">
|
||||
<return type="Control">
|
||||
</return>
|
||||
@@ -99,15 +78,6 @@
|
||||
Returns the title of the tab at index [code]tab_idx[/code]. Tab titles default to the name of the indexed child node, but this can be overridden with [method set_tab_title].
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_current_tab">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="tab_idx" type="int">
|
||||
</argument>
|
||||
<description>
|
||||
Sets to [code]false[/code] the [code]visible[/code] property for all [Control] children except for the tab at [code]tab_idx[/code].
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_popup">
|
||||
<return type="void">
|
||||
</return>
|
||||
@@ -117,15 +87,6 @@
|
||||
If set on a [Popup] node instance, a popup menu icon appears in the top-right corner of the [code]TabContainer[/code]. Clicking it will expand the [Popup] node.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_tab_align">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="align" type="int" enum="TabContainer.TabAlign">
|
||||
</argument>
|
||||
<description>
|
||||
Sets tab alignment, from the [code]ALIGN_*[/code] constants. Moves tabs to the left, right, or center.
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_tab_disabled">
|
||||
<return type="void">
|
||||
</return>
|
||||
@@ -159,15 +120,6 @@
|
||||
Sets a title for the tab at index [code]tab_idx[/code]. Tab titles default to the name of the indexed child node, but this can be overridden with [method set_tab_title].
|
||||
</description>
|
||||
</method>
|
||||
<method name="set_tabs_visible">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="visible" type="bool">
|
||||
</argument>
|
||||
<description>
|
||||
If [code]true[/code] tabs are visible. If [code]false[/code] tabs' content and titles are hidden. Default value: [code]true[/code].
|
||||
</description>
|
||||
</method>
|
||||
</methods>
|
||||
<members>
|
||||
<member name="current_tab" type="int" setter="set_current_tab" getter="get_current_tab">
|
||||
|
||||
Reference in New Issue
Block a user