Uses of Class
com.lowagie.text.rtf.RtfAddableElement
Packages that use RtfAddableElement
Package
Description
-
Uses of RtfAddableElement in com.lowagie.text.rtf.direct
Subclasses of RtfAddableElement in com.lowagie.text.rtf.directModifier and TypeClassDescriptionclassThe RtfDirectContent makes it possible to directly add RTF code into an RTF document. -
Uses of RtfAddableElement in com.lowagie.text.rtf.graphic
Subclasses of RtfAddableElement in com.lowagie.text.rtf.graphicModifier and TypeClassDescriptionclassThe RtfShape provides the interface for adding shapes to the RTF document.classThe RtfShapePosition stores position and ordering information for one RtfShape.classThe RtfShapeProperty stores all shape properties that are not handled by the RtfShape and RtfShapePosition.
There is a huge selection of properties that can be set. -
Uses of RtfAddableElement in com.lowagie.text.rtf.text
Subclasses of RtfAddableElement in com.lowagie.text.rtf.textModifier and TypeClassDescriptionclassThe RtfTab encapsulates a tab position and tab type in a paragraph.classThe RtfTabGroup is a convenience class if the same tabs are to be added to multiple paragraphs.
RtfTabGroup tabs = new RtfTabGroup();
tabs.add(new RtfTab(70, RtfTab.TAB_LEFT_ALIGN));
tabs.add(new RtfTab(160, RtfTab.TAB_CENTER_ALIGN));
tabs.add(new RtfTab(250, RtfTab.TAB_DECIMAL_ALIGN));
tabs.add(new RtfTab(500, RtfTab.TAB_RIGHT_ALIGN));
Paragraph para = new Paragraph();
para.add(tabs);
para.add("\tLeft aligned\tCentre aligned\t12,45\tRight aligned");