|
Control Surface API
3.0.3
|

Public Member Functions | |
| SettableIntegerValue | scrollPosition () |
| void | scrollIntoView (int position) |
| void | scrollBy (int amount) |
| default void | scrollForwards () |
| default void | scrollBackwards () |
| void | scrollByPages (int amount) |
| default void | scrollPageForwards () |
| default void | scrollPageBackwards () |
| BooleanValue | canScrollBackwards () |
| BooleanValue | canScrollForwards () |
Interface for something that can be scrolled.
Definition at line 8 of file Scrollable.java.
| BooleanValue canScrollBackwards | ( | ) |
Value that reports if it is possible to scroll the bank backwards or not.
| BooleanValue canScrollForwards | ( | ) |
Value that reports if it is possible to scroll the bank forwards or not.
| default void scrollBackwards | ( | ) |
Scrolls forwards by one step. This is the same as calling scrollBy(int) with -1
Definition at line 47 of file Scrollable.java.
| void scrollBy | ( | int | amount | ) |
Scrolls by a number of steps.
| amount | The number of steps to scroll by (positive is forwards and negative is backwards). |
| void scrollByPages | ( | int | amount | ) |
Scrolls by a number of pages.
| amount | The number of pages to scroll by (positive is forwards and negative is backwards). |
| default void scrollForwards | ( | ) |
Scrolls forwards by one step. This is the same as calling scrollBy(int) with 1
Definition at line 37 of file Scrollable.java.
| void scrollIntoView | ( | int | position | ) |
Scrolls the supplied position into view if it isn't already.
| default void scrollPageBackwards | ( | ) |
Scrolls backwards by one page.
Implemented in Bank< ItemType extends ObjectProxy >.
Definition at line 75 of file Scrollable.java.
| default void scrollPageForwards | ( | ) |
Scrolls forwards by one page.
Implemented in Bank< ItemType extends ObjectProxy >.
Definition at line 65 of file Scrollable.java.
| SettableIntegerValue scrollPosition | ( | ) |
Value that reports the current scroll position.