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.

Initializer

Methods

Region Methods

Node Methods

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.