Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.lowagie.text.rtf.document.* (9)com.lowagie.text.rtf.field.* (5)
com.lowagie.text.rtf.graphic.* (1)com.lowagie.text.rtf.headerfooter.* (2)
com.lowagie.text.rtf.list.* (3)com.lowagie.text.rtf.style.* (4)
com.lowagie.text.rtf.table.* (5)com.lowagie.text.rtf.text.* (7)

com.lowagie.text.rtf: Javadoc index of package com.lowagie.text.rtf.


Package Samples:

com.lowagie.text.rtf.document
com.lowagie.text.rtf.document.output
com.lowagie.text.rtf.field
com.lowagie.text.rtf.graphic
com.lowagie.text.rtf.headerfooter
com.lowagie.text.rtf.list
com.lowagie.text.rtf.style
com.lowagie.text.rtf.table
com.lowagie.text.rtf.text

Classes:

RtfWriter: If you are creating a new project using the rtf part of iText, please consider using the new RtfWriter2. The RtfWriter is in bug-fix-only mode, will be deprecated end of 2005 and removed end of 2007. A DocWriter class for Rich Text Files (RTF). A RtfWriter can be added as a DocListener to a certain Document by getting an instance. Every Element added to the original Document will be written to the OutputStream of this RtfWriter . Example: // creation of the document with a certain size and certain margins Document document = new Document(PageSize.A4, 50, 50, 50, 50); try { // this will write RTF ...
RtfTOC: This class can be used to insert a table of contents into the RTF document. Therefore the field TOC is used. It works great in Word 2000. StarOffice doesn't support such fields. Other word version are not tested yet. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. This class is based on the RtfWriter-package from Mark Hall.
RtfTable: A Helper Class for the RtfWriter . Do not use it directly, except if you want to write a DocumentListener for Rtf ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. Parts of this Class were contributed by Steffen Stundzig. Many thanks for the improvements. Updates Benoit WIART
RtfHeaderFooter: This HeaderFooter specialization extends the normal HeaderFooter impl. by the new ctor with 'Element' param. So we have the ability to add a table or some moe sophisticated stuff as header or footer content. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. This class is based on the RtfWriter-package from Mark Hall.
RtfHeaderFooters: This HeaderFooter specialization contains some headers or footers for several pages. Is a list of headerFooters but also a sub class of header footer, to change as less as possible of the current API. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. This class is based on the RtfWriter-package from Mark Hall.
RtfCell: A Helper Class for the RtfWriter . Do not use it directly ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. Parts of this Class were contributed by Steffen Stundzig. Many thanks for the improvements. Updates by Benoit WIART
RtfFont: The RtfFont class stores one font for an rtf document. It extends Font, so can be set as a font, to allow adding of fonts with arbitrary names. BaseFont fontname handling contributed by Craig Fleming. Version: $Id: RtfFont.java,v 1.17 2005/05/09 17:48:54 hallm Exp $
RtfTableOfContents: The RtfTableOfContents together with multiple RtfTOCEntry objects generates a table of contents. The table of contents will display no entries in the viewing program and the user will have to update it first. A text to inform the user of this is displayed instead.
RtfField: The RtfField class is an abstract base class for all rtf field functionality. Subclasses only need to implement the two abstract methods writeFieldInstContent and writeFieldResultContent. All other field functionality is handled by the RtfField class.
RtfRow: A Helper Class for the RtfWriter . Do not use it directly ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. Parts of this Class were contributed by Steffen Stundzig. Many thanks for the improvements. Code added by c
RtfField: This interface should mark classes, that can be represented as RTF fields, such as pagenumber, toc entries and so on. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. This class is based on the RtfWriter-package from Mark Hall.
RtfFont: The RtfFont class enables you to add arbitrary Fonts to a rtf document by specifying the font name you want to have. The font has to be installed on the client for this to work. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
RtfTOCEntry: This class can be used to insert entries for a table of contents into the RTF document. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. This class is based on the RtfWriter-package from Mark Hall.
RtfExtendedElement: The RtfExtendedElement interface is to be used for elements that also write data into the definition part of the rtf document Version: $Id: RtfExtendedElement.java,v 1.16 2005/05/04 14:33:37 blowagie Exp $
RtfFontList: The RtfFontList stores the list of fonts used in the rtf document. It also has methods for writing this list to the document Version: $Id: RtfFontList.java,v 1.16 2005/05/04 14:33:52 blowagie Exp $
RtfTOCEntry: The RtfTOCEntry is used together with the RtfTableOfContents to generate a table of contents. Add the RtfTOCEntry in those locations in the document where table of contents entries should link to
RtfCodePage: The RtfCodePage class allows different code pages to be used in the rtf document. Currently always ansi / ansicpg1252 Version: $Id: RtfCodePage.java,v 1.16 2005/05/04 14:33:53 blowagie Exp $
RtfDocument: The RtfDocument stores all document related data and also the main data stream. INTERNAL CLASS - NOT TO BE USED DIRECTLY Version: $Id: RtfDocument.java,v 1.10 2005/02/02 18:08:20 hallm Exp $
RtfBasicElement: The RtfBasicElement interface defines the interface for elements that can be added to the RtfWriter. Version: $Id: RtfBasicElement.java,v 1.16 2005/05/04 14:33:37 blowagie Exp $
AbstractRtfField: This class implements an abstract RtfField. This class is based on the RtfWriter-package from Mark Hall. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
GenericRtfField: This class implements a generic RtfField. This class is based on the RtfWriter-package from Mark Hall. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2.
RtfCell: The RtfCell wraps a Cell, but can also be added directly to a Table. The RtfCell is an extension of Cell, that supports a multitude of different borderstyles.
RtfDiskCache: The RtfFileCache is a RtfDataCache that uses a temporary file to store the rtf document data. Not so fast, but doesn't use any memory (just disk space).
RtfPageNumber: A rtf page number field. ONLY FOR USE WITH THE RtfWriter NOT with the RtfWriter2. This class is based on the RtfWriter-package from Mark Hall.
RtfWriter2: The RtfWriter allows the creation of rtf documents via the iText system Version: $Id: RtfWriter2.java,v 1.9 2005/02/02 18:07:41 hallm Exp $

Home | Contact Us | Privacy Policy | Terms of Service