HotXLS-dokumentasjon
Innhold
Hjem
Oversikt
TGridToXLS
IXLSWorkbook
Hjem
Innhold
Oversikt
SaveAs metode
Saves the Workbook to the specified file. Returnerer 1 if it succeeds
File names ending in .xlsx are written through the XLSX
export bridge; .xls, .html, and
.rtf continue to use the classic exporters
Syntaks
function SaveAs(Filename: WideString): Integer;
FileName
WideString. A string that indicates the name of the file to be saved. You can include a full path; if you don't, component saves the file in the current folder
Eksempel
This example creates Example1.xls Workbook and Examle1.html file with two Worksheets which contain data from DBGrid1 and DBGrid2
begin
GridToXLS1.Workbook := nil; //Clears Workbook
//First dbgrid
GridToXLS1.WorksheetName := 'DBGrid1 sheet'; //Angir the name for first Worksheet
GridToXLS1.DBGrid := DBGrid1; //Angir the dbgrid for export
GridToXLS1.ExportDBGrid;
//Second dbgrid
GridToXLS1.WorksheetName := 'DBGrid2 sheet'; //Angir the name for second Worksheet
GridToXLS1.DBGrid := DBGrid2; //Angir the dbgrid for export
GridToXLS1.ExportDBGrid;
GridToXLS1.SaveAs('Example1.xls'); //Saves the created Workbook into Example1.xls file
GridToXLS1.SaveAs('Example1.xlsx'); //Saves the created Workbook into Example1.xlsx file
GridToXLS1.SaveAs('Example1.html'); //Saves the created Workbook into Example1.html file
GridToXLS1.SaveAs('Example1.rtf'); //Saves the created Workbook into Example1.rtf file
end;
Copyright © 2010-2026 losLab Software