Uses of Class
com.lowagie.text.Phrase
-
Packages that use Phrase Package Description com.lowagie.text com.lowagie.text.factories com.lowagie.text.pdf -
-
Uses of Phrase in com.lowagie.text
Subclasses of Phrase in com.lowagie.text Modifier and Type Class Description class
Anchor
AnAnchor
can be a reference or a destination of a reference.class
Footnote
AFootnote
is a little note that can be added at the bottom of a page.class
ListItem
AListItem
is aParagraph
that can be added to aList
.class
Paragraph
AParagraph
is a series ofChunk
s and/orPhrases
.Fields in com.lowagie.text declared as Phrase Modifier and Type Field Description private Phrase
HeaderFooter. after
This is thePhrase
that comes after the pagenumber.private Phrase
HeaderFooter. before
This is thePhrase
that comes before the pagenumber.Methods in com.lowagie.text that return Phrase Modifier and Type Method Description Phrase
HeaderFooter. getAfter()
Gets the part that comes after the pageNumber.Phrase
HeaderFooter. getBefore()
Gets the part that comes before the pageNumber.static Phrase
Phrase. getInstance(int leading, java.lang.String string)
Gets a special kind of Phrase that changes some characters into corresponding symbols.static Phrase
Phrase. getInstance(int leading, java.lang.String string, Font font)
Gets a special kind of Phrase that changes some characters into corresponding symbols.static Phrase
Phrase. getInstance(java.lang.String string)
Gets a special kind of Phrase that changes some characters into corresponding symbols.Methods in com.lowagie.text with parameters of type Phrase Modifier and Type Method Description void
Table. addCell(Phrase content)
Adds aCell
to theTable
.void
Table. addCell(Phrase content, java.awt.Point location)
Adds aCell
to theTable
.Constructors in com.lowagie.text with parameters of type Phrase Constructor Description Anchor(Phrase phrase)
Constructs anAnchor
with a certainPhrase
.HeaderFooter(boolean numbered, Phrase after)
Constructs aHeader
-object with a pagenumber at the beginning.HeaderFooter(Phrase before, boolean numbered)
Constructs aHeader
-object with a pagenumber at the end.HeaderFooter(Phrase before, Phrase after)
Constructs aHeaderFooter
-object.ListItem(Phrase phrase)
Constructs aListItem
with a certainPhrase
.Paragraph(Phrase phrase)
Constructs aParagraph
with a certainPhrase
.Phrase(Phrase phrase)
Copy constructor forPhrase
. -
Uses of Phrase in com.lowagie.text.factories
Methods in com.lowagie.text.factories that return Phrase Modifier and Type Method Description static Phrase
ElementFactory. getPhrase(java.util.Properties attributes)
Creates a Phrase object based on a list of properties. -
Uses of Phrase in com.lowagie.text.pdf
Fields in com.lowagie.text.pdf declared as Phrase Modifier and Type Field Description protected Phrase
PdfPCell. phrase
The text in the cell.protected Phrase
ColumnText. waitPhrase
Methods in com.lowagie.text.pdf that return Phrase Modifier and Type Method Description private Phrase
TextField. composePhrase(java.lang.String text, BaseFont ufont, java.awt.Color color, float fontSize)
Phrase
PdfPCell. getPhrase()
Gets thePhrase
from this cell.Phrase
FontSelector. process(java.lang.String text)
Process the text so that it will render with a combination of fonts if needed.Methods in com.lowagie.text.pdf with parameters of type Phrase Modifier and Type Method Description PdfPCell
PdfPTable. addCell(Phrase phrase)
Adds a cell element.void
ColumnText. addText(Phrase phrase)
Adds aPhrase
to the current text array.void
MultiColumnText. addText(Phrase phrase)
Adds aPhrase
to the current text array.void
VerticalText. addText(Phrase phrase)
Adds aPhrase
to the current text array.private static void
TextField. changeFontSize(Phrase p, float size)
static float
ColumnText. getWidth(Phrase phrase)
Gets the width that the line will occupy after writing.static float
ColumnText. getWidth(Phrase phrase, int runDirection, int arabicOptions)
Gets the width that the line will occupy after writing.void
PdfPCell. setPhrase(Phrase phrase)
Sets thePhrase
for this cell.void
ColumnText. setSimpleColumn(Phrase phrase, float llx, float lly, float urx, float ury, float leading, int alignment)
Simplified method for rectangular columns.void
ColumnText. setText(Phrase phrase)
Replaces the current text array with thisPhrase
.static void
ColumnText. showTextAligned(PdfContentByte canvas, int alignment, Phrase phrase, float x, float y, float rotation)
Shows a line of text.static void
ColumnText. showTextAligned(PdfContentByte canvas, int alignment, Phrase phrase, float x, float y, float rotation, int runDirection, int arabicOptions)
Shows a line of text.Constructors in com.lowagie.text.pdf with parameters of type Phrase Constructor Description PdfPCell(Phrase phrase)
Constructs aPdfPCell
with aPhrase
.
-