javafx.scene.control.TextField
This node takes the attributes of the javafx.scene.control.TextField see javafx.scene.control.TextField.
If the content is a tooltip, the the TextField's tooltip will be set to the Tooltip.
Used to create a text area that support a single line of text.
GroovyFX.start({
def sg = new SceneGraphBuilder();
sg.stage(
title: "Stage Frame",
x: 100, y: 100, width: 400, height:400,
visible: true
) {
scene(fill: hsb(128, 0.5, 0.5, 0.5), parent: group()) {
text = textField(prefColumnCount:80)
}
}
});
|