Pane
type (joe.win
)
Extends: Region
Extended By: VBox, HBox, GridPane, StackPane
The Pane
type is the base class for JavaFX
Node
widgets that manage child nodes.
- pane.child(node) → this
- pane.children() → joe.List
Region Methods
- region.height(height) → this
- region.padding(pixels) → this
- region.padding(top, right, bottom, left) → this
- region.prefHeight(height) → this
- region.prefWidth(width) → this
- region.width(width) → this
Node Methods
- node.disable([flag]) → this
- node.getProperty(keyword) → value
- node.gridColumn(index) → this
- node.gridColumnSpan(span) → this
- node.gridHalignment(hpos) → this
- node.gridHgrow([priority]) → this
- node.gridMargin(insets) → this
- node.gridRow(index) → this
- node.gridRowSpan(span) → this
- node.gridValignment(vpos) → this
- node.gridVgrow([priority]) → this
- node.hgrow([priority]) → this
- node.id(id) → this
- node.isDisabled() → joe.Boolean
- node.listenTo(keyword, listener) → this
- node.properties() → joe.Set
- node.setProperty(keyword, value) → this
- node.splitResizeWithParent(flag) → this
- node.styleClasses() → joe.List
- node.styles(style, ...) → this
- node.toString() → joe.String
- node.vgrow([priority]) → this
Properties
Pane
widgets have the properties they inherit from their
superclasses.
Pane Initializer
Pane() → Pane
Returns a Pane
.
Methods
pane.child()
pane.child(node) → this
Adds a Node
to the end of the pane's children list.
pane.children()
pane.children() → joe.List
Gets the list of the node's children, which can be updated freely.
All items must belong some Node
subclass.