Generated Object
javafx.scene.control.Separator
Attributes
This node takes the attributes of the javafx.scene.control.Separator see javafx.scene.control.Separator.
Content
If the content is a tooltip, the the Separatorr's tooltip will be set to the Tooltip.
Usage
Used to create a vertical or horizontal Separator line.
Examples
| Code Block |
|---|
GroovyFX.start({
def sg = new SceneGraphBuilder();
sg.stage(
title: "Stage Frame",
x: 100, y: 100, width: 400, height:400,
visible: true,
style: "decorated",
onHidden: { println "Close"}
) {
scene(fill: hsb(128, 0.5, 0.5, 0.5), parent: group()) {
separator(orientation: "horizontal", prefWidth: 200 )
}
}
});
|