|
Name |
Description |
|
void ExportToHtml(string filePath)
|
Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified file in HTML format.
|
|
void ExportToHtml(Stream stream)
|
Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified stream in HTML format.
|
|
void ExportToHtml(string filePath, HtmlExportOptions options)
|
Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified file in HTML format using the specified options.
|
|
void ExportToHtml(string filePath, string htmlCharSet)
|
Obsolete. Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified file in HTML format using the specified character encoding.
|
|
void ExportToHtml(Stream stream, HtmlExportOptions options)
|
Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified stream in HTML format using the specified options.
|
|
void ExportToHtml(string filePath, string htmlCharSet, string title, bool compressed)
|
Obsolete. Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified HTML file with the specified title, using the specified character encoding. The output file can be compressed (secondary characters e.g. spaces are removed) if required.
|
|
void ExportToHtml(Stream stream, string htmlCharSet, string title, bool compressed)
|
Obsolete. Exports the data displayed by the DefaultView (the MainView or the currently maximized detail View) to the specified stream in HTML format with the specified title, using the specified character encoding. The output file can be compressed (secondary characters e.g. spaces are removed) if required.
|