-
- All Known Implementing Classes:
FieldPositioningEvents
,IndexEvents
,PdfPageEventForwarder
,PdfPageEventHelper
public interface PdfPageEvent
Allows a class to catch several document events.Note: do not use Document.add() inside a page event.
- Author:
- Paulo Soares ([email protected])
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
Called when a Chapter is written.void
onChapterEnd(PdfWriter writer, Document document, float paragraphPosition)
Called when the end of a Chapter is reached.void
onCloseDocument(PdfWriter writer, Document document)
Called when the document is closed.void
onEndPage(PdfWriter writer, Document document)
Called when a page is finished, just before being written to the document.void
onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
Called when aChunk
with a generic tag is written.void
onOpenDocument(PdfWriter writer, Document document)
Called when the document is opened.void
onParagraph(PdfWriter writer, Document document, float paragraphPosition)
Called when a Paragraph is written.void
onParagraphEnd(PdfWriter writer, Document document, float paragraphPosition)
Called when a Paragraph is written.void
onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
Called when a Section is written.void
onSectionEnd(PdfWriter writer, Document document, float paragraphPosition)
Called when the end of a Section is reached.void
onStartPage(PdfWriter writer, Document document)
Called when a page is initialized.
-
-
-
Method Detail
-
onOpenDocument
void onOpenDocument(PdfWriter writer, Document document)
Called when the document is opened.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the document
-
onStartPage
void onStartPage(PdfWriter writer, Document document)
Called when a page is initialized.Note that if even if a page is not written this method is still called. It is preferable to use
onEndPage
to avoid infinite loops.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the document
-
onEndPage
void onEndPage(PdfWriter writer, Document document)
Called when a page is finished, just before being written to the document.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the document
-
onCloseDocument
void onCloseDocument(PdfWriter writer, Document document)
Called when the document is closed.Note that this method is called with the page number equal to the last page plus one.
- Parameters:
writer
- thePdfWriter
for this documentdocument
- the document
-
onParagraph
void onParagraph(PdfWriter writer, Document document, float paragraphPosition)
Called when a Paragraph is written.paragraphPosition
will hold the height at which the paragraph will be written to. This is useful to insert bookmarks with more control.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentparagraphPosition
- the position the paragraph will be written to
-
onParagraphEnd
void onParagraphEnd(PdfWriter writer, Document document, float paragraphPosition)
Called when a Paragraph is written.paragraphPosition
will hold the height of the end of the paragraph.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentparagraphPosition
- the position of the end of the paragraph
-
onChapter
void onChapter(PdfWriter writer, Document document, float paragraphPosition, Paragraph title)
Called when a Chapter is written.position
will hold the height at which the chapter will be written to.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentparagraphPosition
- the position the chapter will be written totitle
- the title of the Chapter
-
onChapterEnd
void onChapterEnd(PdfWriter writer, Document document, float paragraphPosition)
Called when the end of a Chapter is reached.position
will hold the height of the end of the chapter.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentparagraphPosition
- the position the chapter will be written to
-
onSection
void onSection(PdfWriter writer, Document document, float paragraphPosition, int depth, Paragraph title)
Called when a Section is written.position
will hold the height at which the section will be written to.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentparagraphPosition
- the position the section will be written todepth
- the number depth of the sectiontitle
- the title of the section
-
onSectionEnd
void onSectionEnd(PdfWriter writer, Document document, float paragraphPosition)
Called when the end of a Section is reached.position
will hold the height of the section end.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentparagraphPosition
- the position the section will be written to
-
onGenericTag
void onGenericTag(PdfWriter writer, Document document, Rectangle rect, String text)
Called when aChunk
with a generic tag is written.It is useful to pinpoint the
Chunk
location to generate bookmarks, for example.- Parameters:
writer
- thePdfWriter
for this documentdocument
- the documentrect
- theRectangle
containing theChunk
text
- the text of the tag
-
-