Exports generated document to HTML format.

Namespace:  C1.C1PrintDocument
Assembly:  C1.C1PrintDocument.Classic.2 (in C1.C1PrintDocument.Classic.2.dll)

Syntax

C#
public void ExportToHTML(
	string fileName,
	string imagesFolderName,
	bool onePagePerFile,
	HtmlTOCTypeEnum generateTOC,
	HtmlTOCLinksLocationEnum tocLinksLocation,
	string customNavigationBar,
	bool generatePageSeparators,
	float scaling,
	bool showProgressDialog
)
Visual Basic (Declaration)
Public Sub ExportToHTML ( _
	fileName As String, _
	imagesFolderName As String, _
	onePagePerFile As Boolean, _
	generateTOC As HtmlTOCTypeEnum, _
	tocLinksLocation As HtmlTOCLinksLocationEnum, _
	customNavigationBar As String, _
	generatePageSeparators As Boolean, _
	scaling As Single, _
	showProgressDialog As Boolean _
)

Parameters

fileName
Type: System..::.String
Target file name.
imagesFolderName
Type: System..::.String
The name of subfolder where images are stored.
onePagePerFile
Type: System..::.Boolean
Indicates whether the exported file will be generated as a single file or multiple files.
generateTOC
Type: HtmlTOCTypeEnum
Specifies the type of Table Of Contents.
tocLinksLocation
Type: HtmlTOCLinksLocationEnum
Specifies the location of the Table Of Contents.
customNavigationBar
Type: System..::.String
Allows the user to specify a custom formatted navigation bar as a string.
generatePageSeparators
Type: System..::.Boolean
Indicates whether a horizontal line will be generated as a separator between pages.
scaling
Type: System..::.Single
Scaling factor for the generated content (in percent; 100% means natural size).
showProgressDialog
Type: System..::.Boolean
If True, a progress dialog box will be shown during the export process.

See Also