Uses of Class
javafx.scene.control.ScrollToEvent
Package
Description
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
-
Uses of ScrollToEvent in javafx.scene.control
Modifier and TypeFieldDescriptionstatic final EventType
<ScrollToEvent> ScrollToEvent.ANY
Common supertype for all scroll-to event types.Modifier and TypeMethodDescriptionfinal EventHandler
<ScrollToEvent<Integer>> ListView.getOnScrollTo()
Gets the value of theonScrollTo
property.final EventHandler
<ScrollToEvent<Integer>> TableView.getOnScrollTo()
Gets the value of theonScrollTo
property.final EventHandler
<ScrollToEvent<Integer>> TreeTableView.getOnScrollTo()
Gets the value of theonScrollTo
property.TreeView.getOnScrollTo()
Gets the value of theonScrollTo
property.final EventHandler
<ScrollToEvent<TableColumn<S, ?>>> TableView.getOnScrollToColumn()
Gets the value of theonScrollToColumn
property.final EventHandler
<ScrollToEvent<TreeTableColumn<S, ?>>> TreeTableView.getOnScrollToColumn()
Gets the value of theonScrollToColumn
property.final ObjectProperty
<EventHandler<ScrollToEvent<TableColumn<S, ?>>>> TableView.onScrollToColumnProperty()
Called when there's a request to scroll a column into view usingTableView.scrollToColumn(TableColumn)
orTableView.scrollToColumnIndex(int)
final ObjectProperty
<EventHandler<ScrollToEvent<TreeTableColumn<S, ?>>>> TreeTableView.onScrollToColumnProperty()
Called when there's a request to scroll a column into view usingTreeTableView.scrollToColumn(TreeTableColumn)
orTreeTableView.scrollToColumnIndex(int)
final ObjectProperty
<EventHandler<ScrollToEvent<Integer>>> ListView.onScrollToProperty()
Called when there's a request to scroll an index into view usingListView.scrollTo(int)
orListView.scrollTo(Object)
final ObjectProperty
<EventHandler<ScrollToEvent<Integer>>> TableView.onScrollToProperty()
Called when there's a request to scroll an index into view usingTableView.scrollTo(int)
orTableView.scrollTo(Object)
final ObjectProperty
<EventHandler<ScrollToEvent<Integer>>> TreeTableView.onScrollToProperty()
Called when there's a request to scroll an index into view usingTreeTableView.scrollTo(int)
TreeView.onScrollToProperty()
Called when there's a request to scroll an index into view usingTreeView.scrollTo(int)
static <T extends TableColumnBase<?,
?>>
EventType<ScrollToEvent<T>> ScrollToEvent.scrollToColumn()
This event occurs if the user requests scrolling aTableColumnBase
(i.e.static EventType
<ScrollToEvent<Integer>> ScrollToEvent.scrollToTopIndex()
This event occurs if the user requests scrolling a given index into view.Modifier and TypeMethodDescriptionfinal void
ListView.setOnScrollTo
(EventHandler<ScrollToEvent<Integer>> value) Sets the value of theonScrollTo
property.final void
TableView.setOnScrollTo
(EventHandler<ScrollToEvent<Integer>> value) Sets the value of theonScrollTo
property.final void
TreeTableView.setOnScrollTo
(EventHandler<ScrollToEvent<Integer>> value) Sets the value of theonScrollTo
property.void
TreeView.setOnScrollTo
(EventHandler<ScrollToEvent<Integer>> value) Sets the value of theonScrollTo
property.final void
TableView.setOnScrollToColumn
(EventHandler<ScrollToEvent<TableColumn<S, ?>>> value) Sets the value of theonScrollToColumn
property.final void
TreeTableView.setOnScrollToColumn
(EventHandler<ScrollToEvent<TreeTableColumn<S, ?>>> value) Sets the value of theonScrollToColumn
property.ModifierConstructorDescriptionScrollToEvent
(Object source, EventTarget target, EventType<ScrollToEvent<T>> type, T scrollTarget) Construct a newEvent
with the specified event source, target and type.