Example usage for Java javafx.scene.layout TilePane fields, constructors, methods, implement or subclass
The text is from its open source code.
TilePane() Creates a horizontal TilePane layout with prefColumn = 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(double hgap, double vgap, Node... children) Creates a horizontal TilePane layout with prefColumn = 5 and the specified hgap/vgap. | |
TilePane(double hgap, double vgap) Creates a horizontal TilePane layout with prefColumn = 5 and the specified hgap/vgap. | |
TilePane(Orientation orientation, Node... children) Creates a TilePane layout with the specified orientation, prefColumn/prefRows = 5 and hgap/vgap = 0. | |
TilePane(Orientation orientation) Creates a TilePane layout with the specified orientation, prefColumn/prefRows = 5 and hgap/vgap = 0. | |
TilePane(Node... children) Creates a horizontal TilePane layout with prefColumn = 5 and hgap/vgap = 0. |
ObjectProperty | alignmentProperty() The overall alignment of the tilepane's content within its width and height. |
void | clearConstraints(Node child) Removes all tilepane constraints from the child node. |
Pos | getAlignment() |
Pos | getAlignment(Node node) Returns the child's alignment constraint if set. |
ObservableList | getChildren() |
Orientation | getContentBias() |
double | getHgap() |
Insets | getMargin(Node node) Returns the child's margin constraint if set. |
Orientation | getOrientation() |
int | getPrefColumns() |
int | getPrefRows() |
double | getPrefTileHeight() |
double | getPrefTileWidth() |
Pos | getTileAlignment() |
double | getTileHeight() |
double | getTileWidth() |
double | getVgap() |
DoubleProperty | hgapProperty() The amount of horizontal space between each tile in a row. |
ObjectProperty | orientationProperty() The orientation of this tilepane. |
IntegerProperty | prefColumnsProperty() The preferred number of columns for a horizontal tilepane. |
DoubleProperty | prefHeightProperty() |
IntegerProperty | prefRowsProperty() The preferred number of rows for a vertical tilepane. |
DoubleProperty | prefTileHeightProperty() The preferred height of each tile. |
DoubleProperty | prefTileWidthProperty() The preferred width of each tile. |
DoubleProperty | prefWidthProperty() |
void | requestLayout() |
void | setAlignment(Pos value) |
void | setAlignment(Node node, Pos value) Sets the alignment for the child when contained by a tilepane. |
void | setHgap(double value) |
void | setLayoutX(double value) |
void | setLayoutY(double value) |
void | setMargin(Node node, Insets value) Sets the margin for the child when contained by a tilepane. |
void | setMaxHeight(double value) |
void | setMaxWidth(double value) |
void | setMinWidth(double value) |
void | setOrientation(Orientation value) |
void | setPadding(Insets value) |
void | setPrefColumns(int value) |
void | setPrefRows(int value) |
void | setPrefTileHeight(double value) |
void | setPrefTileWidth(double value) |
void | setSnapToPixel(boolean value) |
void | setStyle(String value) A string representation of the CSS style associated with this specific Node . |
void | setTileAlignment(Pos value) |
void | setVgap(double value) |
ObjectProperty | tileAlignmentProperty() The default alignment of each child within its tile. |
ReadOnlyDoubleProperty | tileHeightProperty() The actual height of each tile. |
ReadOnlyDoubleProperty | tileWidthProperty() The actual width of each tile. |
DoubleProperty | vgapProperty() The amount of vertical space between each tile in a column. |