|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.lowagie.text.Rectangle com.lowagie.text.HeaderFooter
public class HeaderFooter
A HeaderFooter
-object is a Rectangle
with text
that can be put above and/or below every page.
Example:
HeaderFooter header = new HeaderFooter(new Phrase("This is a header."), false); HeaderFooter footer = new HeaderFooter(new Phrase("This is page "), new Phrase(".")); document.setHeader(header); document.setFooter(footer);
Field Summary |
---|
Fields inherited from class com.lowagie.text.Rectangle |
---|
backgroundColor, border, borderColor, borderColorBottom, borderColorLeft, borderColorRight, borderColorTop, borderWidth, borderWidthBottom, borderWidthLeft, borderWidthRight, borderWidthTop, BOTTOM, BOX, LEFT, llx, lly, NO_BORDER, RIGHT, rotation, TOP, UNDEFINED, urx, ury, useVariableBorders |
Fields inherited from interface com.lowagie.text.Element |
---|
ALIGN_BASELINE, ALIGN_BOTTOM, ALIGN_CENTER, ALIGN_JUSTIFIED, ALIGN_JUSTIFIED_ALL, ALIGN_LEFT, ALIGN_MIDDLE, ALIGN_RIGHT, ALIGN_TOP, ALIGN_UNDEFINED, ANCHOR, ANNOTATION, AUTHOR, CCITT_BLACKIS1, CCITT_ENCODEDBYTEALIGN, CCITT_ENDOFBLOCK, CCITT_ENDOFLINE, CCITTG3_1D, CCITTG3_2D, CCITTG4, CELL, CHAPTER, CHUNK, CREATIONDATE, CREATOR, HEADER, IMGRAW, IMGTEMPLATE, JBIG2, JPEG, JPEG2000, KEYWORDS, LIST, LISTITEM, MARKED, MULTI_COLUMN_TEXT, PARAGRAPH, PHRASE, PRODUCER, PTABLE, RECTANGLE, ROW, SECTION, SUBJECT, TABLE, TITLE, YMARK |
Constructor Summary | |
---|---|
HeaderFooter(Phrase before,
boolean numbered)
Constructs a Header -object with a pagenumber at the end. |
|
HeaderFooter(Phrase before,
Phrase after)
Constructs a HeaderFooter -object. |
Method Summary | |
---|---|
int |
alignment()
Gets the alignment of this HeaderFooter. |
Phrase |
getAfter()
Gets the part that comes after the pageNumber. |
Phrase |
getBefore()
Gets the part that comes before the pageNumber. |
boolean |
isNumbered()
Checks if the HeaderFooter contains a page number. |
Paragraph |
paragraph()
Gets the Paragraph that can be used as header or footer. |
void |
setAlignment(int alignment)
Sets the alignment. |
void |
setPageNumber(int pageN)
Sets the page number. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public HeaderFooter(Phrase before, Phrase after)
HeaderFooter
-object.
before
- the Phrase
before the pagenumberafter
- the Phrase
before the pagenumberpublic HeaderFooter(Phrase before, boolean numbered)
Header
-object with a pagenumber at the end.
before
- the Phrase
before the pagenumbernumbered
- true
if the page has to be numberedMethod Detail |
---|
public boolean isNumbered()
public Phrase getBefore()
public Phrase getAfter()
public void setPageNumber(int pageN)
pageN
- the new page numberpublic void setAlignment(int alignment)
alignment
- the new alignmentpublic Paragraph paragraph()
Paragraph
that can be used as header or footer.
Paragraph
public int alignment()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |