2016-05-26 108 views
0
TextArea txt = new TextArea(); 

我打電話來設置這個textarea的高度和寬度的方法是什麼?如何設置javafx TextArea的高度和寬度?

+2

'setPrefColumnCount()'和'setPrefRowCount()'應該爲你做。 [見這裏](https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TextArea.html#getPrefColumnCount--) – Draken

+0

謝謝你的工作 – HashTables

回答

2

setPrefColumnCount()和setPrefRowCount()工作

0
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 
+0

請考慮添加一些細節和解釋支持你的答案,以幫助他人 –

相關問題