scroll = ...
Makes a box element scrollable when the contents of the box exceed the size of a box whose width and/or height are constrained.
ioL will add scrollbars to the element as necessary to allow the user to view all the content.
The scroll property is false by default, and a box of constrained size will clip any content that does not fit in the viewable area.
Specifying a boolean value for this field
The scroll field evaluates a single boolean value:
- true: the scroll property is enabled for this tag
- false: the scroll property is disabled for this tag
Example
<some-content:box scroll=false> <! specify that the scroll property is not enabled for this tag. !> ... <some-content.scroll true> <! change the field we previously set to enable that property now. !>