Scrollbar input behavior.
that have this behavior applied by default (see master_style_sheet):
<input type=“vscrollbar” /> <widget type=“vscrollbar” /> - vertical scrollbar <input type=“hscrollbar” /> <widget type=“hscrollbar” /> - horizontal scrollbar N/A.
This behavior generates events from SCROLL_EVENTS group.
In Sciter this corresponds to onScroll(evt) event handler.
of type integer, reflects current position of the scrollbar.
scrollbar supports following xcall() methods, see dom::element::xcall() function.
xcall(“setValues”, position:int, minValue:int, maxValue:int, page:int, step:int): void - sets scrollbar values: current position, min/max values, “page” and “line” increment values;xcall(“min”) - returns min value;xcall(“max”) - returns max value;xcall(“page”) - returns page value;xcall(“step”) - returns step value;Note that in Sciter you can access this methods simply as: