|
This delegate is called during HTML export.
If it is null, a default page separator is produced for each
page. You can customize the page separator by setting this
property.
The definition of the XSaveOptions.PageSeparatorMethod delegate
is as follows.
delegate void PageSeparatorMethod(int pageNum, ExportArgs e);
Delegate Sub PageSeparatorMethod(pageNum As Integer, e As ExportArgs)
pageNum is the page number, starting with 1.
The page separator is to be written to e.Writer. e.Writer is an
XmlWriter for HTML export.
|