Example usage for Java com.lowagie.text Chunk fields, constructors, methods, implement or subclass
The text is from its open source code.
Chunk | NEWLINE This is a Chunk containing a newline. |
Chunk | NEXTPAGE This is a Chunk containing a newpage. |
Font | font This is the Font of this chunk of text. |
String | LOCALDESTINATION Key for local destination. |
Chunk(Chunk ck) A Chunk copy constructor. | |
Chunk(String content) Constructs a chunk of text with a certain content, without specifying a Font . | |
Chunk(char c) Constructs a chunk of text with a char, without specifying a Font . | |
Chunk(DrawInterface separator) Creates a separator Chunk. | |
Chunk(String content, Font font) Constructs a chunk of text with a certain content and a certain Font . | |
Chunk(char c, Font font) Constructs a chunk of text with a char and a certain Font . | |
Chunk(DrawInterface separator, boolean vertical) Creates a separator Chunk. | |
Chunk(DrawInterface separator, float tabPosition) Creates a tab Chunk. | |
Chunk(Image image, float offsetX, float offsetY) Constructs a chunk containing an Image . | |
Chunk(DrawInterface separator, float tabPosition, boolean newline) Creates a tab Chunk. | |
Chunk() Empty constructor. | |
Chunk(Image image, float offsetX, float offsetY, boolean changeLeading) Constructs a chunk containing an Image . |
StringBuffer | append(String string) appends some text to this Chunk . |
HashMap | getAttributes() Gets the attributes for this Chunk . |
String | getContent() Returns the content of this Chunk . |
Font | getFont() Gets the font of this Chunk . |
Image | getImage() Returns the image. |
float | getTextRise() Gets the text displacement relative to the baseline. |
float | getWidthPoint() Gets the width of the Chunk in points. |
boolean | hasAttributes() Checks the attributes of this Chunk . |
boolean | isEmpty() Checks is this Chunk is empty. |
Chunk | setAction(PdfAction action) Sets an action for this Chunk . |
Chunk | setAnchor(URL url) Sets an anchor for this Chunk . |
Chunk | setAnchor(String url) Sets an anchor for this Chunk . |
Chunk | setBackground(Color color) Sets the color of the background Chunk . |
Chunk | setBackground(Color color, float extraLeft, float extraBottom, float extraRight, float extraTop) Sets the color and the size of the background Chunk . |
void | setFont(Font font) Sets the font of this Chunk . |
Chunk | setGenericTag(String text) Sets the generic tag Chunk . |
Chunk | setHyphenation(HyphenationEvent hyphenation) sets the hyphenation engine to this Chunk . |
Chunk | setLocalDestination(String name) Sets a local destination for this Chunk . |
Chunk | setLocalGoto(String name) Sets a local goto for this Chunk . |
Chunk | setNewPage() Sets a new page tag.. |
Chunk | setRemoteGoto(String filename, String name) Sets a goto for a remote destination for this Chunk . |
Chunk | setRemoteGoto(String filename, int page) Sets a goto for a remote destination for this Chunk . |
Chunk | setSplitCharacter(SplitCharacter splitCharacter) Sets the split characters. |
Chunk | setTextRise(float rise) Sets the text displacement relative to the baseline. |
Chunk | setUnderline(Color color, float thickness, float thicknessMul, float yPosition, float yPositionMul, int cap) Sets an horizontal line that can be an underline or a strikethrough. |
Chunk | setUnderline(float thickness, float yPosition) Sets an horizontal line that can be an underline or a strikethrough. |