Abstract Interface for text document generators. Output formats for
text reports must implment this interface to be used by the report
system.
|
page_break(self)
Forces a page break, creating a new page |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
end_paragraph(self)
Ends the current parsgraph |
source code
|
|
|
|
|
|
|
start_row(self)
Starts a new row on the current table |
source code
|
|
|
end_row(self)
Ends the current row on the current table |
source code
|
|
|
start_cell(self,
style_name,
span=1)
Starts a new table cell, using the paragraph style specified. |
source code
|
|
|
|
|
write_note(self,
text,
format,
style_name)
Writes the note's text and take care of paragraphs, depending on the
format. |
source code
|
|
|
|
|
|