ScrollBar
Horizontal and vertical scroll-bar elements. Both expose the shared RangeValue properties from
ScrollBarBase plus directional scroll methods. Obtain them via
element.as_horizontal_scroll_bar() / element.as_vertical_scroll_bar().
flaui.core.automation_elements.ScrollBarBase
Bases: AutomationElement
Base class for scroll bar elements, exposing the shared RangeValue properties.
is_read_only
property
Whether the scroll bar value is read-only.
Returns:
| Type | Description |
|---|---|
bool
|
|
large_change
property
The value of a large change (page scroll).
Returns:
| Type | Description |
|---|---|
float
|
Large change value. |
maximum_value
property
The maximum scroll value.
Returns:
| Type | Description |
|---|---|
float
|
Maximum value. |
minimum_value
property
The minimum scroll value.
Returns:
| Type | Description |
|---|---|
float
|
Minimum value. |
small_change
property
The value of a small change (line scroll).
Returns:
| Type | Description |
|---|---|
float
|
Small change value. |
value
property
The current scroll value.
Returns:
| Type | Description |
|---|---|
float
|
Current value. |
flaui.core.automation_elements.HorizontalScrollBar
Bases: ScrollBarBase
Class to interact with a horizontal scroll bar element.
scroll_left()
scroll_left_large()
scroll_right()
flaui.core.automation_elements.VerticalScrollBar
Bases: ScrollBarBase
Class to interact with a vertical scroll bar element.