Uses of Class
com.lowagie.text.Paragraph
-
Packages that use Paragraph Package Description com.lowagie.text com.lowagie.text.factories com.lowagie.text.html.simpleparser com.lowagie.text.pdf com.lowagie.text.pdf.events -
-
Uses of Paragraph in com.lowagie.text
Subclasses of Paragraph in com.lowagie.text Modifier and Type Class Description class
ListItem
AListItem
is aParagraph
that can be added to aList
.Fields in com.lowagie.text declared as Paragraph Modifier and Type Field Description protected Paragraph
Section. title
The title of this section.Methods in com.lowagie.text that return Paragraph Modifier and Type Method Description static Paragraph
Section. constructTitle(Paragraph title, java.util.List<java.lang.Integer> numbers, int numberDepth, int numberStyle)
Constructs a Paragraph that will be used as title for a Section or Chapter.Paragraph
Section. getBookmarkTitle()
Gets the bookmark title.Paragraph
Section. getTitle()
Returns the title, preceded by a certain number of sectionnumbers.Paragraph
HeaderFooter. paragraph()
Gets theParagraph
that can be used as header or footer.Methods in com.lowagie.text with parameters of type Paragraph Modifier and Type Method Description Section
ChapterAutoNumber. addSection(Paragraph title)
Create a new section for this chapter and add it.Section
Section. addSection(float indentation, Paragraph title)
Creates aSection
, adds it to thisSection
and returns it.Section
Section. addSection(float indentation, Paragraph title, int numberDepth)
Creates aSection
, adds it to thisSection
and returns it.Section
Section. addSection(Paragraph title)
Creates aSection
, adds it to thisSection
and returns it.Section
Section. addSection(Paragraph title, int numberDepth)
Creates aSection
, add it to thisSection
and returns it.static Paragraph
Section. constructTitle(Paragraph title, java.util.List<java.lang.Integer> numbers, int numberDepth, int numberStyle)
Constructs a Paragraph that will be used as title for a Section or Chapter.void
Section. setTitle(Paragraph title)
Sets the title of this section.Constructors in com.lowagie.text with parameters of type Paragraph Constructor Description Chapter(Paragraph title, int number)
Constructs a newChapter
.ChapterAutoNumber(Paragraph para)
Create a new object.Section(Paragraph title, int numberDepth)
Constructs a newSection
. -
Uses of Paragraph in com.lowagie.text.factories
Methods in com.lowagie.text.factories that return Paragraph Modifier and Type Method Description static Paragraph
ElementFactory. getParagraph(java.util.Properties attributes)
Creates a Paragraph object based on a list of properties. -
Uses of Paragraph in com.lowagie.text.html.simpleparser
Fields in com.lowagie.text.html.simpleparser declared as Paragraph Modifier and Type Field Description private Paragraph
HTMLWorker. currentParagraph
Methods in com.lowagie.text.html.simpleparser that return Paragraph Modifier and Type Method Description static Paragraph
FactoryProperties. createParagraph(ChainedProperties props)
Methods in com.lowagie.text.html.simpleparser with parameters of type Paragraph Modifier and Type Method Description static void
FactoryProperties. createParagraph(Paragraph paragraph, ChainedProperties props)
boolean
ALink. process(Paragraph current, ChainedProperties cprops)
private static void
FactoryProperties. setParagraphLeading(Paragraph paragraph, java.lang.String leading)
-
Uses of Paragraph in com.lowagie.text.pdf
Methods in com.lowagie.text.pdf with parameters of type Paragraph Modifier and Type Method Description (package private) static PdfPTable
PdfDocument. createInOneCell(Paragraph paragraph)
Integrate a paragraph into a table, so it can be a whole.void
PdfPageEvent. onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
Called when a Chapter is written.void
PdfPageEventHelper. onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
Called when a Chapter is written.void
PdfPageEvent. onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
Called when a Section is written.void
PdfPageEventHelper. onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
Called when a Section is written.Constructors in com.lowagie.text.pdf with parameters of type Paragraph Constructor Description PdfOutline(PdfOutline parent, PdfAction action, Paragraph title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfAction action, Paragraph title, boolean open)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, Paragraph title)
Constructs aPdfOutline
.PdfOutline(PdfOutline parent, PdfDestination destination, Paragraph title, boolean open)
Constructs aPdfOutline
. -
Uses of Paragraph in com.lowagie.text.pdf.events
Methods in com.lowagie.text.pdf.events with parameters of type Paragraph Modifier and Type Method Description void
PdfPageEventForwarder. onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
Called when a Chapter is written.void
PdfPageEventForwarder. onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
Called when a Section is written.
-