From 841a9ef820925b6960e92a86f4482d1654e66897 Mon Sep 17 00:00:00 2001 From: kobewi Date: Tue, 7 Dec 2021 17:15:18 +0100 Subject: ScrollContainer's scrollbar visibility is now enum --- doc/classes/ScrollContainer.xml | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) (limited to 'doc/classes/ScrollContainer.xml') diff --git a/doc/classes/ScrollContainer.xml b/doc/classes/ScrollContainer.xml index f0c739bfa3..94d9bfdc31 100644 --- a/doc/classes/ScrollContainer.xml +++ b/doc/classes/ScrollContainer.xml @@ -22,14 +22,14 @@ Returns the horizontal scrollbar [HScrollBar] of this [ScrollContainer]. - [b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to disable the horizontal scrollbar, use [member scroll_horizontal_enabled]. If you want to only hide it instead, use [member scroll_horizontal_visible]. + [b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to disable or hide a scrollbar, you can use [member horizontal_scroll_mode]. Returns the vertical scrollbar [VScrollBar] of this [ScrollContainer]. - [b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to disable the vertical scrollbar, use [member scroll_vertical_enabled]. If you want to only hide it instead, use [member scroll_vertical_visible]. + [b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to disable or hide a scrollbar, you can use [member vertical_scroll_mode]. @@ -37,26 +37,20 @@ If [code]true[/code], the ScrollContainer will automatically scroll to focused children (including indirect children) to make sure they are fully visible. + + Controls whether horizontal scrollbar can be used and when it should be visible. See [enum ScrollMode] for options. + The current horizontal scroll value. - - If [code]true[/code], enables horizontal scrolling. - - - If [code]false[/code], hides the horizontal scrollbar. - The current vertical scroll value. - - If [code]true[/code], enables vertical scrolling. - - - If [code]false[/code], hides the vertical scrollbar. + + Controls whether vertical scrollbar can be used and when it should be visible. See [enum ScrollMode] for options. @@ -71,6 +65,20 @@ + + + Scrolling disabled, scrollbar will be invisible. + + + Scrolling enabled, scrollbar will be visible only if necessary, i.e. container's content is bigger than the container. + + + Scrolling enabled, scrollbar will be always visible. + + + Scrolling enabled, scrollbar will be hidden. + + The background [StyleBox] of the [ScrollContainer]. -- cgit v1.2.3