/*----------------------------------------------------------------
| Tutorial 31
|
| This tutorial shows how to export data to HTML file in C++.NET.
-----------------------------------------------------------------*/using namespace System;
using namespace EasyXLS;
using namespace EasyXLS::Constants;
int main()
{
Console::WriteLine("Tutorial 31\n----------\n");
// Create an instance of the class that exports Excel files, having a sheet
ExcelDocument ^workbook = gcnew ExcelDocument(1);
// Set the sheet name
workbook->easy_getSheetAt(0)->setSheetName("First tab");
// Get the table of data for the worksheet
ExcelWorksheet ^xlsFirstTab = safe_cast<ExcelWorksheet^>(workbook->easy_getSheetAt(0));
ExcelTable ^xlsFirstTable = xlsFirstTab->easy_getExcelTable();
// Add data in cells for report headerfor (int column=0; column<5; column++)
{
xlsFirstTable->easy_getCell(0,column)->setValue(String::Concat("Column ",(column + 1).ToString()));
xlsFirstTable->easy_getCell(0,column)->setDataType(DataType::STRING);
}
// Add data in cells for report valuesfor (int row=0; row<100; row++)
{
for (int column=0; column<5; column++)
{
xlsFirstTable->easy_getCell(row+1,column)->setValue(
String::Concat("Data ", (row + 1).ToString(), ", ", (column + 1).ToString()));
xlsFirstTable->easy_getCell(row+1,column)->setDataType(DataType::STRING);
}
}
// Apply a predefined format to the cells
xlsFirstTable->easy_setRangeAutoFormat("A1:E101", gcnew ExcelAutoFormat(Styles::AUTOFORMAT_EASYXLS1));
// Export HTML file
Console::WriteLine("Writing file C:\\Samples\\Tutorial31 - export HTML file.html.");
workbook->easy_WriteHTMLFile("C:\\Samples\\Tutorial31 - export HTML file.html", "First tab");
// Confirm export of HTML file
String ^sError = workbook->easy_getError();
if (sError->Equals(""))
Console::Write("\nFile successfully created. Press Enter to Exit...");
else
Console::Write(String::Concat("\nError encountered: ", sError, "\nPress Enter to Exit..."));
// Dispose memory
delete workbook;
Console::ReadLine();
return 0;
}
C++ without .NET Framework This tutorial is valid for C++ applications that can use .NET Framework. For applications that does not have .NET Framework integrated, a similar code sample is available.