Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Cells returns the HTML string of the cell using the GetHtmlString method which accepts a boolean parameter. If you pass false as a parameter, it will return Normal HTML but if you pass true as a parameter, it will return HTML5 string.
The following sample code creates a workbook object and adds some text in cell A1 of the first worksheet. It then gets the Normal HTML and HTML5 string from cell A1 using the GetHtmlString method and prints them on the console.
#include <iostream>
#include "Aspose.Cells.h"
using namespace Aspose::Cells;
int main()
{
Aspose::Cells::Startup();
// Create workbook
Workbook wb;
// Access first worksheet
Worksheet ws = wb.GetWorksheets().Get(0);
// Access cell A1 and put some text inside it
Cell cell = ws.GetCells().Get(u"A1");
cell.PutValue(u"This is some text.");
// Get the Normal and Html5 strings
U16String strNormal = cell.GetHtmlString(false);
U16String strHtml5 = cell.GetHtmlString(true);
// Print the Normal and Html5 strings on console
std::cout << "Normal:\r\n" << strNormal.ToUtf8() << std::endl;
std::cout << std::endl;
std::cout << "Html5:\r\n" << strHtml5.ToUtf8() << std::endl;
Aspose::Cells::Cleanup();
}
Normal:
<Font Style="FONT-FAMILY: Arial;FONT-SIZE: 10pt;COLOR: #000000;">This is some text.</Font>
Html5:
<div Style="FONT-FAMILY: Arial;FONT-SIZE: 10pt;COLOR: #000000;">This is some text.</div>Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.