Example usage for Java com.lowagie.text Phrase fields, constructors, methods, implement or subclass
The text is from its open source code.
Phrase(float leading, Chunk chunk) Constructs a Phrase with a certain Chunk and a certain leading. | |
Phrase(String string, Font font) Constructs a Phrase with a certain String and a certain Font . | |
Phrase(float leading, String string) Constructs a Phrase with a certain leading and a certain String . | |
Phrase(Phrase phrase) Copy constructor for Phrase . | |
Phrase(float leading) Constructs a Phrase with a certain leading. | |
Phrase(Chunk chunk) Constructs a Phrase with a certain Chunk . | |
Phrase(String string) Constructs a Phrase with a certain String . | |
Phrase(boolean dummy) Constructs a Phrase that can be used in the static getInstance() method. | |
Phrase() Constructs a Phrase without specifying a leading. | |
Phrase(float leading, String string, Font font) Constructs a Phrase with a certain leading, a certain String and a certain Font . |
boolean | add(Object o) Adds a Chunk , Anchor or another Phrase to this Phrase . |
void | add(int index, Object o) Adds a Chunk , an Anchor or another Phrase to this Phrase . |
Font | getFont() Gets the font of the first Chunk that appears in this Phrase . |
Phrase | getInstance(String string) Gets a special kind of Phrase that changes some characters into corresponding symbols. |
float | getLeading() Gets the leading of this phrase. |
void | setFont(Font font) Sets the main font of this phrase. |
void | setLeading(float leading) Sets the leading of this phrase. |