The ScrollbarButtonLayout class provides a number of constants that can be used to set properties in the AdvancedTree, more specifically for the scrollbarButtonLayout property of the scrollPaneConfiguration property. All constants are static members of the ScrollbarButtonLayout class. No instances of the class need to be made.
| Property Name | Class | Value |
| BOTTOM | String | "bottom" |
| SPREAD | String | "spread" |
| TOP | String | "top" |
import com.flashloaded.ui.containers.ScrollPaneConfiguration;
import com.flashloaded.ui.sliders.scrollbars.ScrollbarButtonLayout;
var config:ScrollPaneConfiguration = new ScrollPaneConfiguration();
config.scrollbarWidth = 12;
config.scrollbarButtonLayout = ScrollbarButtonLayout.TOP;
tree.scrollPaneConfiguration = config;