public interface MifBook
Modifier and Type | Method and Description |
---|---|
void |
createPage()
Add a page to this book.
|
void |
createTable()
Create a new table.
|
void |
output(java.io.OutputStream stream)
Writes the content of this book to a given output stream.
|
void |
setBlockProp(int startIndent,
int endIndent)
Creates a new paragraph and sets its properties.
|
void |
setCurrent(java.lang.String current)
Sets the current component of the current table, either body, header, or footer.
|
void |
setDocumentHeightWidth(int height,
int width)
Sets the dimensions of this document.
|
void |
startCell(int rowSpan,
int colSpan)
Start a new cell in the current row of the current table.
|
void |
startRow()
Start a new row in the current table.
|
void createTable()
void setCurrent(java.lang.String current)
current
- The description of the current component.void startRow()
void startCell(int rowSpan, int colSpan)
rowSpan
- The number of rows spanned by the new cell.colSpan
- The number of columns spanned by the new cell.void setBlockProp(int startIndent, int endIndent)
startIndent
- The start-indent value of the new paragraph.endIndent
- The end-indent value of the new paragraph.void createPage()
void setDocumentHeightWidth(int height, int width)
height
- The height, in millipoints (??), of this document.width
- The width, in millipoints (??), of this document.void output(java.io.OutputStream stream) throws OutputException
stream
- The stream to which the content should be written.OutputException
- For I/O errors during writing.This documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.