Uses of Class
com.lowagie.text.rtf.RtfAddableElement
-
Packages that use RtfAddableElement Package Description com.lowagie.text.rtf.direct com.lowagie.text.rtf.graphic com.lowagie.text.rtf.text -
-
Uses of RtfAddableElement in com.lowagie.text.rtf.direct
Subclasses of RtfAddableElement in com.lowagie.text.rtf.direct Modifier and Type Class Description classRtfDirectContentThe 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.graphic Modifier and Type Class Description classRtfShapeThe RtfShape provides the interface for adding shapes to the RTF document.classRtfShapePositionThe RtfShapePosition stores position and ordering information for one RtfShape.classRtfShapePropertyThe 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.text Modifier and Type Class Description classRtfTabThe RtfTab encapsulates a tab position and tab type in a paragraph.classRtfTabGroupThe 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");
-