Uses of Enum Class
javafx.geometry.Orientation
Packages that use Orientation
Package
Description
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
Provides the core set of base
classes for the JavaFX Scene Graph API.
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.
Provides classes to support user interface layout.
-
Uses of Orientation in javafx.geometry
Methods in javafx.geometry that return OrientationModifier and TypeMethodDescriptionstatic Orientation
Returns the enum constant of this class with the specified name.static Orientation[]
Orientation.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of Orientation in javafx.scene
Methods in javafx.scene that return OrientationModifier and TypeMethodDescriptionNode.getContentBias()
Returns the orientation of a node's resizing bias for layout purposes. -
Uses of Orientation in javafx.scene.control
Methods in javafx.scene.control that return OrientationModifier and TypeMethodDescriptionLabeled.getContentBias()
If wrapText is true, then contentBias will be HORIZONTAL, otherwise it is null.final Orientation
ListView.getOrientation()
Returns the current orientation of the ListView, which dictates whether it scrolls vertically or horizontally.final Orientation
ScrollBar.getOrientation()
Gets the value of theorientation
property.final Orientation
Separator.getOrientation()
Gets the value of theorientation
property.final Orientation
Slider.getOrientation()
Gets the value of theorientation
property.final Orientation
SplitPane.getOrientation()
The orientation for the SplitPane.final Orientation
ToolBar.getOrientation()
Gets the value of theorientation
property.Methods in javafx.scene.control that return types with arguments of type OrientationModifier and TypeMethodDescriptionfinal ObjectProperty<Orientation>
ListView.orientationProperty()
The orientation of theListView
- this can either be horizontal or vertical.final ObjectProperty<Orientation>
ScrollBar.orientationProperty()
final ObjectProperty<Orientation>
Separator.orientationProperty()
The orientation of theSeparator
can either be horizontal or vertical.final ObjectProperty<Orientation>
Slider.orientationProperty()
The orientation of theSlider
can either be horizontal or vertical.final ObjectProperty<Orientation>
SplitPane.orientationProperty()
The orientation for the SplitPane.final ObjectProperty<Orientation>
ToolBar.orientationProperty()
The orientation of theToolBar
- this can either be horizontal or vertical.Methods in javafx.scene.control with parameters of type OrientationModifier and TypeMethodDescriptionfinal void
ListView.setOrientation
(Orientation value) Sets the orientation of the ListView, which dictates whether it scrolls vertically or horizontally.final void
ScrollBar.setOrientation
(Orientation value) Sets the value of theorientation
property.final void
Separator.setOrientation
(Orientation value) Sets the value of theorientation
property.final void
Slider.setOrientation
(Orientation value) Sets the value of theorientation
property.final void
SplitPane.setOrientation
(Orientation value) This property controls how the SplitPane should be displayed to the user.final void
ToolBar.setOrientation
(Orientation value) Sets the value of theorientation
property.Constructors in javafx.scene.control with parameters of type OrientationModifierConstructorDescriptionSeparator
(Orientation orientation) Creates a new separator with halignment and valignment set to their respective CENTER values. -
Uses of Orientation in javafx.scene.layout
Methods in javafx.scene.layout that return OrientationModifier and TypeMethodDescriptionBorderPane.getContentBias()
GridPane.getContentBias()
HBox.getContentBias()
StackPane.getContentBias()
VBox.getContentBias()
final Orientation
FlowPane.getOrientation()
Gets the value of theorientation
property.final Orientation
TilePane.getOrientation()
Gets the value of theorientation
property.Methods in javafx.scene.layout that return types with arguments of type OrientationModifier and TypeMethodDescriptionfinal ObjectProperty<Orientation>
FlowPane.orientationProperty()
The orientation of this flowpane.final ObjectProperty<Orientation>
TilePane.orientationProperty()
The orientation of this tilepane.Methods in javafx.scene.layout with parameters of type OrientationModifier and TypeMethodDescriptionfinal void
FlowPane.setOrientation
(Orientation value) Sets the value of theorientation
property.final void
TilePane.setOrientation
(Orientation value) Sets the value of theorientation
property.Constructors in javafx.scene.layout with parameters of type OrientationModifierConstructorDescriptionFlowPane
(Orientation orientation) Creates a FlowPane layout with the specified orientation and hgap/vgap = 0.FlowPane
(Orientation orientation, double hgap, double vgap) Creates a FlowPane layout with the specified orientation and hgap/vgap.FlowPane
(Orientation orientation, double hgap, double vgap, Node... children) Creates a FlowPane layout with the specified orientation and hgap/vgap.FlowPane
(Orientation orientation, Node... children) Creates a FlowPane layout with the specified orientation and hgap/vgap = 0.TilePane
(Orientation orientation) Creates a TilePane layout with the specified orientation, prefColumn/prefRows = 5 and hgap/vgap = 0.TilePane
(Orientation orientation, double hgap, double vgap) Creates a TilePane layout with the specified orientation, hgap/vgap, and prefRows/prefColumns = 5.TilePane
(Orientation orientation, double hgap, double vgap, Node... children) Creates a TilePane layout with the specified orientation, hgap/vgap, and prefRows/prefColumns = 5.TilePane
(Orientation orientation, Node... children) Creates a TilePane layout with the specified orientation, prefColumn/prefRows = 5 and hgap/vgap = 0.