Package com.lowagie.examples.rtf.features.styles

Source Code of com.lowagie.examples.rtf.features.styles.ChangingStylesheets

/*
* $Id$
*
* This code is free software. It may only be copied or modified
* if you include the following copyright notice:
*
* --> Copyright 2006 by Mark Hall <--
*
* This code is part of the 'iText Tutorial'.
* You can find the complete tutorial at the following address:
* http://itextdocs.lowagie.com/tutorial/
*
* This code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* itext-questions@lists.sourceforge.net
*/
package com.lowagie.examples.rtf.features.styles;

import java.awt.Color;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;

import com.lowagie.text.LwgDocument;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.rtf.RtfWriter2;
import com.lowagie.text.rtf.style.RtfParagraphStyle;


/**
* The ChangingStylesheets example shows how to change the properties of
* the predefined stylesheets.
*
* @version $Revision$
* @author Mark Hall (Mark.Hall@mail.room3b.eu)
*/
public class ChangingStylesheets {
    /**
     * Changing paragraph stylesheets properties.
     *
     * @param args Unused
     */
    public static void main(String[] args) {
        System.out.println("Demonstrates using changing the properties of paragraph stylesheets");
        try {
            LwgDocument document = new LwgDocument();
            RtfWriter2.getInstance(document, new FileOutputStream("ChangingStylesheets.rtf"));

            // Set the default style font name. This is inherited
            // by all other styles.
            RtfParagraphStyle.STYLE_NORMAL.setFontName("Times New Roman");
            // Set the colour of the level 1 heading to blue.
            RtfParagraphStyle.STYLE_HEADING_1.setColor(Color.BLUE);
            // Set the font name of the heading back to Arial again.
            RtfParagraphStyle.STYLE_HEADING_2.setFontName("Arial");
            // Change the font size
            RtfParagraphStyle.STYLE_HEADING_2.setSize(12);

            // Change the style properties to the desired values
            // before document.open()

            document.open();
           
            // Simply set the stylesheet you wish to use as the Font
            // of the Paragraph
            document.add(new Paragraph("This is a heading level 1",
                    RtfParagraphStyle.STYLE_HEADING_1));
            document.add(new Paragraph("This is a heading level 2",
                    RtfParagraphStyle.STYLE_HEADING_2));
            document.add(new Paragraph("Just some text that is formatted " +
                    "in the default style.", RtfParagraphStyle.STYLE_NORMAL));

            document.close();
        } catch (FileNotFoundException fnfe) {
            fnfe.printStackTrace();
        } catch (DocumentException de) {
            de.printStackTrace();
        }
    }

}
TOP

Related Classes of com.lowagie.examples.rtf.features.styles.ChangingStylesheets

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.