| Author |
changing font style and size
|
Fran Costigan
Greenhorn
Joined: Feb 06, 2006
Posts: 8
|
|
I'm creating a java GUI application with labels and textboxes etc, but how do i change the font style and size, eg: change it to times new roman, size 12, bold???
|
 |
Craig Wood
Ranch Hand
Joined: Jan 14, 2004
Posts: 1535
|
|
|
Label, TextField, JLabel, JTextField each have access to the setFont method that you can use. Or you could use getFont and alter the style and size of the returned font with the deriveFont method. See Font class api for details.
|
 |
 |
|
|
subject: changing font style and size
|
|
|