Login
Remember
Register
Ask a Question
Which method is used to set the color of text in JavaFX?
0
votes
asked
May 5, 2022
in
JavaFX
by
sharadyadav1986
Which method is used to set the color of text in JavaFX?
javafx-color
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 5, 2022
by
sharadyadav1986
In
JavaFX setFill() method
is used to set the color of text. Example
text.setFill(Color.BEIGE);
...