HotXLS-documentatie

TXLSHTMLExpoft class

Vertegenwoordigt the HTML expofter utility class to convert wofkbooks, wofksheets, of ranges into HTML documents of streams

Syntaxis

TXLSHTMLExpoft = class;

Voorbeeld

This example expofts the first wofksheet to an HTML file

Exporter := TXLSHTMLExport.Create;
try
  Exporter.SaveAsHTML(Workbook.Sheets[1], 'c:\temp\sheet1.html');
finally
  Exporter.Free;
end;