Table of Contents
HeaderHtmlFormat Property

Gets or sets the header format.

Syntax
 public String HeaderHtmlFormat { get; set; }
Remarks

The format string can include HTML markups as well as variables that will be replaced at runtime with the value of the variable. A variable is marked by a pair of "{" and "}". The following variables are supported:

Variable Remark
url The current url
total_pages Total page numbers
page_number The current page number

For example, the following HeaderHtmlFormat displays current page number at the center:

HTML
<div style="text-align:center">{page_number}</div>

This property is automatically cleared after each conversion.

See Also