Class OperationConverterFooter


  • public class OperationConverterFooter
    extends Object
    Defines the content that will be used as a footer. The content is passed in BASE64 encoded and contains HTML and (embedded) CSS code to position and format the footer. The footer can contain the variables `${html.pageNumber}` (page number), `${html.totalPages}` (total number of pages) and `${html.title}` (HTML head meta tag `<title>`). **Important:**The footer is not used for all file format conversions. The footer is not supported for file formats that already contain their own footer definition, such as Office formats. The footer defined here works only for HTML-based formats such as HTML files, emails, or template-based conversions (e.g. text formats). Example: ```html <p> <span style=\"font-size: 12px\">Page ${html.pageNumber} of ${html.totalPages} pages</span> </p> ```