public final class HtmlFormatter extends java.lang.Object implements IHtmlFormatter
Represents HTML file template.
Modifier and Type | Method and Description |
---|---|
static HtmlFormatter |
createCustomFormatter(IHtmlFormattingController formattingController)
Creates and returns HTML formatter for custom callback-driven html generation.
|
static HtmlFormatter |
createDocumentFormatter(java.lang.String css,
boolean showSlideTitle)
Creates and returns HTML formatter for a simple document view which consists of sequences of slides one below another.
|
static HtmlFormatter |
createSlideShowFormatter(java.lang.String css,
boolean showSlideTitle)
Creates and returns HTML formatter for a simple slide show html which shows slides one after another.
|
public static HtmlFormatter createDocumentFormatter(java.lang.String css, boolean showSlideTitle)
Creates and returns HTML formatter for a simple document view which consists of sequences of slides one below another.
css
- Specifies CSS for this file.showSlideTitle
- Add slide title if there is one above slide image.HtmlFormatter
object.public static HtmlFormatter createSlideShowFormatter(java.lang.String css, boolean showSlideTitle)
Creates and returns HTML formatter for a simple slide show html which shows slides one after another.
css
- Specifies URL of CCS file used.showSlideTitle
- Add slide title if there is one above slide image.HtmlFormatter
object.public static HtmlFormatter createCustomFormatter(IHtmlFormattingController formattingController)
Creates and returns HTML formatter for custom callback-driven html generation.
formattingController
- Callback interface which controls html file generation.HtmlFormatter
object.