Variables

@:value(cast 0)@:impl@:enuminlineread onlyAUTO_ADD:ScrollbarVisibility = 0

Adds a scrollbar only if the content is higher than the container. When the scrollbar is not there, it give a bit more width to the content as the space for the scrollbar is free.

@:value(cast 1)@:impl@:enuminlineread onlyAUTO_ADD_STAY:ScrollbarVisibility = 1

Like AUTO_ADD, but when the scrollbar is added, it stays, even if the content fits again within the visible area later. This can be useful to prevent continuous inner width changes and scrollbar appearing and disappearing over and over again when the content height varies many times. The only way to make the scrollbar disappear again would be to increase the height of the window itself so that the current content fits in it.

@:value(cast 2)@:impl@:enuminlineread onlyAUTO_SHOW:ScrollbarVisibility = 2

Show a scrollbar only if the content is higher than the container. When the scrollbar is not visible, the content doesn't have more width than when the scrollbar is visible. The extra width is always reserved for the scrollbar, which is only hidden in the hierarchy as needed, not really removed entirely.

@:value(cast 3)@:impl@:enuminlineread onlyALWAYS:ScrollbarVisibility = 3

The scrollbar is always included and visible, given that the container has a fixed height.

@:value(cast -1)@:impl@:enuminlineread onlyNEVER:ScrollbarVisibility = -1

There is never a scrollbar