Class OperationUrlConverterHeader


  • public class OperationUrlConverterHeader
    extends Object
    Defines the content that will be used as a header. The content is passed in BASE64 encoded and contains HTML and (embedded) CSS code to position and format the header. The header can contain the variables `${html.pageNumber}` (page number), `${html.totalPages}` (total number of pages) and `${html.title}` (HTML head meta tag `<title>`). **Important:**The header is not used for all file format conversions. The header is not supported for file formats that already contain their own header definition, such as Office formats. The header 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> ```