Uses of Enum Class
javafx.scene.layout.Priority
Packages that use Priority
-
Uses of Priority in javafx.scene.layout
Methods in javafx.scene.layout that return PriorityModifier and TypeMethodDescriptionfinal Priority
ColumnConstraints.getHgrow()
Gets the value of thehgrow
property.static Priority
Returns the child's hgrow constraint if set.static Priority
Returns the child's hgrow constraint if set.static Priority
Returns the child's vgrow constraint if set.final Priority
RowConstraints.getVgrow()
Gets the value of thevgrow
property.static Priority
Returns the child's vgrow property if set.static Priority
Convenience method for returning the higher of two priorities.static Priority
Convenience method for returning the lower of two priorities.static Priority
Returns the enum constant of this class with the specified name.static Priority[]
Priority.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in javafx.scene.layout that return types with arguments of type PriorityModifier and TypeMethodDescriptionfinal ObjectProperty<Priority>
ColumnConstraints.hgrowProperty()
The horizontal grow priority for the column.final ObjectProperty<Priority>
RowConstraints.vgrowProperty()
The vertical grow priority for the row.Methods in javafx.scene.layout with parameters of type PriorityModifier and TypeMethodDescriptionstatic Priority
Convenience method for returning the higher of two priorities.static Priority
Convenience method for returning the lower of two priorities.static void
GridPane.setConstraints
(Node child, int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow) Sets the grid position, spans, and alignment for the child when contained in a gridpane.static void
GridPane.setConstraints
(Node child, int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow, Insets margin) Sets the grid position, spans, alignment, grow priorities, and margin for the child when contained in a gridpane.final void
Sets the value of thehgrow
property.static void
Sets the horizontal grow priority for the child when contained by a gridpane.static void
Sets the horizontal grow priority for the child when contained by an hbox.static void
Sets the vertical grow priority for the child when contained by a gridpane.final void
Sets the value of thevgrow
property.static void
Sets the vertical grow priority for the child when contained by a vbox.Constructors in javafx.scene.layout with parameters of type PriorityModifierConstructorDescriptionColumnConstraints
(double minWidth, double prefWidth, double maxWidth, Priority hgrow, HPos halignment, boolean fillWidth) Creates a column constraint object with a fixed size range, horizontal grow priority, horizonal alignment, and horizontal fill behavior.RowConstraints
(double minHeight, double prefHeight, double maxHeight, Priority vgrow, VPos valignment, boolean fillHeight) Creates a row constraint object with a fixed size range, vertical grow priority, vertical alignment, and vertical fill behavior.