StyleConstants.Bold : StyleConstants « javax.swing.text « Java by API






StyleConstants.Bold

  
import java.awt.BorderLayout;
import java.awt.Color;

import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultStyledDocument;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;

public class Main {
  public static void main(String args[]) {
    JFrame frame = new JFrame("Simple Attributes");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    StyledDocument document = new DefaultStyledDocument();

    SimpleAttributeSet attributes = new SimpleAttributeSet();
    attributes.addAttribute(StyleConstants.CharacterConstants.Bold, Boolean.FALSE);
    attributes.addAttribute(StyleConstants.CharacterConstants.Italic, Boolean.FALSE);
    attributes.addAttribute(StyleConstants.CharacterConstants.Foreground, Color.LIGHT_GRAY);

    try {
      document.insertString(document.getLength(), " Bold, Italic and light gray color", attributes);
    } catch (BadLocationException badLocationException) {
      System.err.println("Bad insert");
    }


    JTextPane textPane = new JTextPane(document);
    textPane.setEditable(false);
    JScrollPane scrollPane = new JScrollPane(textPane);

    frame.add(scrollPane, BorderLayout.CENTER);

    frame.setSize(300, 150);
    frame.setVisible(true);
  }
}

   
    
  








Related examples in the same category

1.StyleConstants.Foreground
2.StyleConstants.Italic
3.StyleConstants.LineSpacing
4.StyleConstants: setAlignment(MutableAttributeSet a, int align)
5.StyleConstants: setBold(MutableAttributeSet a, boolean b)
6.StyleConstants: setComponent(MutableAttributeSet a, Component c)
7.StyleConstants: setFirstLineIndent(MutableAttributeSet a, float i)
8.StyleConstants: setFontFamily(MutableAttributeSet a, String fam)
9.StyleConstants: setForeground(MutableAttributeSet a, Color fg)
10.StyleConstants: setFontSize(MutableAttributeSet a, int s)
11.StyleConstants: setIcon(MutableAttributeSet a, Icon c)
12.StyleConstants: setItalic(MutableAttributeSet a, boolean b)
13.StyleConstants: setLeftIndent(MutableAttributeSet a, float i)
14.StyleConstants: setRightIndent(MutableAttributeSet a, float i)
15.StyleConstants: setSpaceAbove(MutableAttributeSet a, float i)
16.StyleConstants: setSpaceBelow(MutableAttributeSet a, float i)
17.StyleConstants: setTabSet(MutableAttributeSet a, TabSet tabs)
18.StyleConstants: setUnderline(MutableAttributeSet a, boolean b)