Example usage for Java javafx.scene.layout HBox fields, constructors, methods, implement or subclass
The text is from its open source code.
HBox() Creates an HBox layout with spacing = 0. | |
HBox(double spacing) Creates an HBox layout with the specified spacing between children. | |
HBox(Node... children) Creates an HBox layout with spacing = 0. | |
HBox(double spacing, Node... children) Creates an HBox layout with the specified spacing between children. |
ObjectProperty | alignmentProperty() The overall alignment of children within the hbox's width and height. |
Pos | getAlignment() |
ObservableList | getChildren() |
Orientation | getContentBias() |
Priority | getHgrow(Node child) Returns the child's hgrow constraint if set. |
Insets | getMargin(Node child) Returns the child's margin constraint if set. |
Scene | getScene() |
double | getSpacing() |
ObservableList | getStyleClass() |
boolean | isFillHeight() |
BooleanProperty | managedProperty() |
DoubleProperty | prefWidthProperty() |
void | setAlignment(Pos value) |
void | setFillHeight(boolean value) |
void | setHgrow(Node child, Priority value) Sets the horizontal grow priority for the child when contained by an hbox. |
void | setId(String value) |
void | setMargin(Node child, Insets value) Sets the margin for the child when contained by an hbox. |
void | setMaxWidth(double value) |
void | setMinHeight(double value) |
void | setMinWidth(double value) |
void | setPadding(Insets value) |
void | setPrefHeight(double value) |
void | setPrefWidth(double value) |
void | setSpacing(double value) |
void | setStyle(String value) A string representation of the CSS style associated with this specific Node . |
void | setVisible(boolean value) |
DoubleProperty | spacingProperty() The amount of horizontal space between each child in the hbox. |
BooleanProperty | visibleProperty() |