Uses of Class
com.itextpdf.text.Phrase
-
Packages that use Phrase Package Description com.itextpdf.text com.itextpdf.text.pdf com.itextpdf.tool.xml.html Everything to parse HTML tags to pdf used by theHtmlPipeline
is in here.com.itextpdf.tool.xml.html.pdfelement Element
s created for specific use when processing HTML. -
-
Uses of Phrase in com.itextpdf.text
Subclasses of Phrase in com.itextpdf.text Modifier and Type Class Description class
Anchor
AnAnchor
can be a reference or a destination of a reference.class
ListItem
AListItem
is aParagraph
that can be added to aList
.class
Paragraph
AParagraph
is a series ofChunk
s and/orPhrases
.Methods in com.itextpdf.text that return Phrase Modifier and Type Method Description 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.Constructors in com.itextpdf.text with parameters of type Phrase Constructor Description Anchor(Phrase phrase)
Constructs anAnchor
with a certainPhrase
.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.itextpdf.text.pdf
Fields in com.itextpdf.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.itextpdf.text.pdf that return Phrase Modifier and Type Method Description private Phrase
TextField. composePhrase(java.lang.String text, BaseFont ufont, BaseColor 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.itextpdf.text.pdf with parameters of type Phrase Modifier and Type Method Description void
PdfPTable. addCell(Phrase phrase)
Adds a cell element.void
ColumnText. 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.itextpdf.text.pdf with parameters of type Phrase Constructor Description PdfPCell(Phrase phrase)
Constructs aPdfPCell
with aPhrase
. -
Uses of Phrase in com.itextpdf.tool.xml.html
Methods in com.itextpdf.tool.xml.html with parameters of type Phrase Modifier and Type Method Description protected void
AbstractTagProcessor. updateParagraphFontIfNeeded(Phrase p, Element child)
In case child font is of bigger size than paragraph font, text overlapping may occur. -
Uses of Phrase in com.itextpdf.tool.xml.html.pdfelement
Subclasses of Phrase in com.itextpdf.tool.xml.html.pdfelement Modifier and Type Class Description class
NoNewLineParagraph
ANoNewLineParagraph
is a series ofChunk
s and/orPhrases
.Constructors in com.itextpdf.tool.xml.html.pdfelement with parameters of type Phrase Constructor Description NoNewLineParagraph(Phrase phrase)
Constructs aParagraph
with a certainPhrase
.
-