Représente the HTML exporter utility class to convert workbooks, worksheets, or ranges into HTML documents or streams
Syntaxe
Exemple
This example exports the first worksheet to an HTML file
Exporter := TXLSHTMLExport.Create;
try
Exporter.SaveAsHTML(Workbook.Sheets[1], 'c:\temp\sheet1.html');
finally
Exporter.Free;
end;