What is the Constant Value of the Underline font in Java ?
Font.BOLD bold font
Font.ITALIC italic font
What is the UNDERLINE font Constant ? I try all the available constants but it didn't work .
|
|
|||
|
|
|
Suppose you wanted a underlined and bolded Serif style font, size=12.
If you don't want it bolded, use Font.PLAIN instead of Font.BOLD. Don't use the getAttributes() method of the Font class. It will give you a crazy wildcard parameterized type |
||
|
|
|
|
Looking at the Java API Specification, it appears that the However, using the
Edit: There's an example of using |
|||
|
|
|
|
For SWT you can use:
|
||
|
|
|
|
Underlining is not a property of the font but of the text segment. When rendered the text is rendered in the font specified then a line is drawn under it. Depending on what framework you are using, this may be done for you using properties or you may have to do it yourself. |
||
|
|