Java javafx.scene.layout TilePane fields, constructors, methods, implement or subclass

Example usage for Java javafx.scene.layout TilePane fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.scene.layout TilePane.

The text is from its open source code.

Subclass

javafx.scene.layout.TilePane has subclasses.
Click this link to see all its subclasses.

Constructor

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.

Method

ObjectPropertyalignmentProperty()
The overall alignment of the tilepane's content within its width and height.
voidclearConstraints(Node child)
Removes all tilepane constraints from the child node.
PosgetAlignment()
PosgetAlignment(Node node)
Returns the child's alignment constraint if set.
ObservableListgetChildren()
OrientationgetContentBias()
doublegetHgap()
InsetsgetMargin(Node node)
Returns the child's margin constraint if set.
OrientationgetOrientation()
intgetPrefColumns()
intgetPrefRows()
doublegetPrefTileHeight()
doublegetPrefTileWidth()
PosgetTileAlignment()
doublegetTileHeight()
doublegetTileWidth()
doublegetVgap()
DoublePropertyhgapProperty()
The amount of horizontal space between each tile in a row.
ObjectPropertyorientationProperty()
The orientation of this tilepane.
IntegerPropertyprefColumnsProperty()
The preferred number of columns for a horizontal tilepane.
DoublePropertyprefHeightProperty()
IntegerPropertyprefRowsProperty()
The preferred number of rows for a vertical tilepane.
DoublePropertyprefTileHeightProperty()
The preferred height of each tile.
DoublePropertyprefTileWidthProperty()
The preferred width of each tile.
DoublePropertyprefWidthProperty()
voidrequestLayout()
voidsetAlignment(Pos value)
voidsetAlignment(Node node, Pos value)
Sets the alignment for the child when contained by a tilepane.
voidsetHgap(double value)
voidsetLayoutX(double value)
voidsetLayoutY(double value)
voidsetMargin(Node node, Insets value)
Sets the margin for the child when contained by a tilepane.
voidsetMaxHeight(double value)
voidsetMaxWidth(double value)
voidsetMinWidth(double value)
voidsetOrientation(Orientation value)
voidsetPadding(Insets value)
voidsetPrefColumns(int value)
voidsetPrefRows(int value)
voidsetPrefTileHeight(double value)
voidsetPrefTileWidth(double value)
voidsetSnapToPixel(boolean value)
voidsetStyle(String value)
A string representation of the CSS style associated with this specific Node .
voidsetTileAlignment(Pos value)
voidsetVgap(double value)
ObjectPropertytileAlignmentProperty()
The default alignment of each child within its tile.
ReadOnlyDoublePropertytileHeightProperty()
The actual height of each tile.
ReadOnlyDoublePropertytileWidthProperty()
The actual width of each tile.
DoublePropertyvgapProperty()
The amount of vertical space between each tile in a column.