Element representing a decoration for overflowing boxes, which allows to scroll the box. This is useful for toolbars or side panels.
Properties:
Name | Type | Description |
---|---|---|
stepSize |
number | (default: |
styleOfHandle |
template | The handle style template. It is expected to have a property |
target |
html.Box | (default: |
Example
// a toolbar
Box {
fillWidth: true
layout: "center-row"
Button {
icon: "ui-cut"
}
Button {
icon: "ui-copy"
}
Button {
icon: "ui-paste"
}
OverflowScroller { }
}