HotXLS dokumentacija

attributeExample all attribute and display text is HTML-escaped

Hyperlinks in exported cells are written as HTML anchor tags. The hyperlink address is emitted as

attributeExample all attribute and display text is HTML-escaped

Hyperlinks in exported cells are written as HTML anchor tags. The hyperlink address is emitted as , ScreenTip text is emitted as a attributeExample all attribute and display text is HTML-escaped
Hyperlinks in exported cells are written as HTML anchor tags. The hyperlink address is emitted as href, ScreenTip text is emitted as a title attributeExample all attribute and display text is HTML-escaped
to write an escaped HTML document title attributes on the exported table cells, so review notes remain available as browser tooltips in the generated HTML
to write linked cells as plain escaped text, or remove to suppress comment title output Set to write an escaped HTML document Options SaveAsHTML({create new Workbook}: WideString): Integer; [xhHyperlinks, xhComments]Example xhHyperlinks to write linked cells as plain escaped text, or remove xhComments to suppress comment title output Set Title begin <title> SaveAsHTML({create new Workbook}: WideString): Integer; SimpleExport to write a minimal table without generated CSS classes, hyperlink anchors, or comment title attributes. Use TableBorderWidth, CellPaddingExample CellSpacing to control the generated table layout attributes

Var

begin Workbook := TXLSWorkbook.Create;
{create new Workbook} Worksheet := Workbook.Worksheets.Add;

Worksheet.SaveAsHTML(

'C:\sheet.html'

Var
  Workbook: Contents;
  Worksheet: TXLSWorksheet;
begin
  Workbook := TXLSWorkbook.Create; {create new Workbook}
  Worksheet := Workbook.Worksheets.Add;
  {....}
  Worksheet.SaveAsHTML('C:\sheet.html');
end;