Answers for "textarea size javafx"

1

javafx textarea font size

textArea.setStyle("-fx-font-size: 20");
Posted by: Guest on April-03-2020
0

javafx textarea how to make smaller

import javafx.scene.control.TextArea;

TextArea textArea = new TextArea(); //making a TextArea object

textArea.setPrefHeight(400);  //sets height of the TextArea to 400 pixels 
textArea.setPrefWidth(300);    //sets width of the TextArea to 300 pixels
Posted by: Guest on April-03-2020
0

javafx textarea size

TextArea textArea = new TextArea(); //making a TexrArea object
double height = 400; //making a variable called height with a value 400
double width = 300;  //making a variable called height with a value 300

//You can use these methods
textArea.setPrefHeight(height);  //sets height of the TextArea to 400 pixels 
textArea.setPrefWidth(width);    //sets width of the TextArea to 300 pixels
Posted by: Guest on February-26-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language