مستندات HotXLS

متد SaveAsHTML

Worksheet را در یک فایل HTML ذخیره می‌کند

نحو

این مثال Worksheet اول را در فایل example.html ذخیره می‌کند
Hyperlinks in exported cells are written as HTML anchor tags. The hyperlink address is emitted as href, ScreenTip text is emitted as a title attribute, and all attribute and display text is HTML-escaped
Cell comments are emitted as escaped title attributes on the exported table cells, so review notes remain available as browser tooltips in the generated HTML
To customize exporter behavior, create TXLSHTMLExport directly. Its Options property defaults to [xhHyperlinks, xhComments]; remove xhHyperlinks to write linked cells as plain escaped text, or remove xhComments to suppress comment title output Set Title to write an escaped HTML document <title> value. Set SimpleExport to write a minimal table without generated CSS classes, hyperlink anchors, or comment title attributes. Use TableBorderWidth, CellPadding, and CellSpacing to control the generated table layout attributes

مثال

function SaveAsHTML(FileName: WideString): Integer;
FileName WideString. رشته‌ای که نام فایل ذخیره‌شونده را مشخص می‌کند. می‌توانید مسیر کامل را وارد کنید؛ در غیر این صورت، Worksheet فایل را در پوشه جاری ذخیره می‌کند

نمونه

This example creates a new workheet and then saves it in the HTML file

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