Example usage for Java com.lowagie.text Paragraph fields, constructors, methods, implement or subclass
The text is from its open source code.
Paragraph() Constructs a Paragraph . | |
Paragraph(float leading) Constructs a Paragraph with a certain leading. | |
Paragraph(Chunk chunk) Constructs a Paragraph with a certain Chunk . | |
Paragraph(String string) Constructs a Paragraph with a certain String . | |
Paragraph(Phrase phrase) Constructs a Paragraph with a certain Phrase . | |
Paragraph(float leading, Chunk chunk) Constructs a Paragraph with a certain Chunk and a certain leading. | |
Paragraph(String string, Font font) Constructs a Paragraph with a certain String and a certain Font . | |
Paragraph(float leading, String string) Constructs a Paragraph with a certain String and a certain leading. | |
Paragraph(float leading, String string, Font font) Constructs a Paragraph with a certain leading, String and Font . |
boolean | add(Object o) Adds an Object to the Paragraph . |
float | getFirstLineIndent() Getter for property firstLineIndent. |
float | getIndentationLeft() Gets the indentation of this paragraph on the left side. |
float | getIndentationRight() Gets the indentation of this paragraph on the right side. |
float | getSpacingAfter() Gets the spacing after this paragraph. |
float | getSpacingBefore() Gets the spacing before this paragraph. |
void | setAlignment(int alignment) Sets the alignment of this paragraph. |
void | setAlignment(String alignment) Sets the alignment of this paragraph. |
void | setExtraParagraphSpace(float extraParagraphSpace) Setter for property extraParagraphSpace. |
void | setFirstLineIndent(float firstLineIndent) Setter for property firstLineIndent. |
void | setIndentationLeft(float indentation) Sets the indentation of this paragraph on the left side. |
void | setIndentationRight(float indentation) Sets the indentation of this paragraph on the right side. |
void | setKeepTogether(boolean keeptogether) Indicates that the paragraph has to be kept together on one page. |
void | setLeading(float fixedLeading) |
void | setLeading(float fixedLeading, float multipliedLeading) Sets the leading fixed and variable. |
void | setMultipliedLeading(float multipliedLeading) Sets the variable leading. |
void | setSpacingAfter(float spacing) Sets the spacing after this paragraph. |
void | setSpacingBefore(float spacing) Sets the spacing before this paragraph. |