Java Swing Tutorial - Java Font BOLD








Syntax

Font.BOLD has the following syntax.

public static final int BOLD

Example

In the following code shows how to use Font.BOLD field.

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
//from   www . jav  a  2  s .co m
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    int fontSize = 20;

    g.setFont(new Font("TimesRoman", Font.BOLD, fontSize));
    
    String s = "www.java2s.com";
    
    g.setColor(Color.black);
    g.drawString(s, 30, 30);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new Main());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200,200);
    frame.setVisible(true);
  }
}