Bold / Unbold a JLabelTag(s): Swing
JLabel label = new JLabel("I'm bold"); Font font = new Font("Courier", Font.BOLD,12); label.setFont(font);
Font f = label.getFont(); // bold label.setFont(f.deriveFont(f.getStyle() | Font.BOLD)); // unbold label.setFont(f.deriveFont(f.getStyle() & ~Font.BOLD)); // toggle bold label.setFont(f.deriveFont(f.getStyle() ^ Font.BOLD));
mail_outline
Send comment, question or suggestion to howto@rgagnon.com
Send comment, question or suggestion to howto@rgagnon.com