ExportNavBar Property (HtmlExporter)
In This Topic
Gets or sets a template used to create a navigation bar with page numbers. (Note: both
ComplexExporter.Paginated and
GeneratePageLinks must be set to
true for this to work).
The format of the string is as follows: up to four "%s" strings are replaced with links to the first, previous, next and last pages, correspondingly. Up to two "%d" strings are replaced with the current and total page numbers.
For instance:
"<a %s>first</a> <a %s>prev</a> Page %d of %d <a %s>next</a> <a %s>last</a>"
Syntax
'Declaration
Public Property ExportNavBar As String
public string ExportNavBar {get; set;}
See Also