| Author |
how to increase font of JLabel
|
sagar khana
Greenhorn
Joined: Jan 15, 2012
Posts: 15
|
|
hey i know how to create JLabel but i dont know how to increase font in JLabel please help me by providing a method thank you very much
|
 |
Rob Spoor
Saloon Keeper
Joined: Oct 27, 2005
Posts: 18373
|
|
1) get the current Font using getFont.
2) get a copy with an increased size using Font.deriveFont.
3) set the Font using setFont.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
sagar khana
Greenhorn
Joined: Jan 15, 2012
Posts: 15
|
|
Rob Spoor wrote:1) get the current Font using getFont.
2) get a copy with an increased size using Font.deriveFont.
3) set the Font using setFont.
replied you sir and i post request too
n i didnt get these points can you provide some short code thanks for helping me out
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 3221
|
|
sagar khana wrote:n i didnt get these points
Did you read the API for the methods Rob mentioned? namely Component#getFont(), Font#deriveFont(...) and Component#setFont(...)
sagar khana wrote:can you provide some short code thanks for helping me out
Please read this section of How To Ask Questions On Java Ranch. Then try it yourself and ask a specific question if you don't get the desired result.
|
luck, db
There are no new questions, but there may be new answers.
|
 |
sagar khana
Greenhorn
Joined: Jan 15, 2012
Posts: 15
|
|
Darryl Burke wrote:
sagar khana wrote:n i didnt get these points
Did you read the API for the methods Rob mentioned? namely Component#getFont(), Font#deriveFont(...) and Component#setFont(...)
sagar khana wrote:can you provide some short code thanks for helping me out
Please read this section of How To Ask Questions On Java Ranch. Then try it yourself and ask a specific question if you don't get the desired result.
ok
|
 |
 |
|
|
subject: how to increase font of JLabel
|
|
|