Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
When a cell contains text or a string that is larger than the width of the cell, the string overflows if the next cell in the adjacent column is empty. When you save your Excel file as HTML, you can control this overflow by specifying the cross type using the HtmlCrossType enumeration. It has the following values:
HtmlCrossType.Default: Displays like MS Excel; behavior depends on the next cell. If the next cell is empty, the string will cross, otherwise it will be truncated.
HtmlCrossType.MSExport: Displays the string as MS Excel exports HTML.
HtmlCrossType.Cross: Displays an HTML cross string; performance when creating large HTML files will be more than ten times faster than when the value is set to Default or FitToCell.
HtmlCrossType.FitToCell: Displays only the string within the width of the cell.
The following sample code loads the sample Excel file and saves it to HTML format by specifying different HtmlCrossType values. Please download the output HTML files generated with this code. The sample Excel file contains an image bordered in red, as shown in this screenshot, which demonstrates the effect of the HtmlCrossType values on the output HTML.

const path = require("path");
const AsposeCells = require("aspose.cells.node");
// The path to the documents directory.
const dataDir = path.join(__dirname, "data");
const filePath = path.join(dataDir, "sampleHtmlCrossStringType.xlsx");
// Load the sample Excel file
const workbook = new AsposeCells.Workbook(filePath);
// Specify HTML Cross Type
const opts = new AsposeCells.HtmlSaveOptions();
opts.setHtmlCrossStringType(AsposeCells.HtmlCrossType.Default);
opts.setHtmlCrossStringType(AsposeCells.HtmlCrossType.MSExport);
opts.setHtmlCrossStringType(AsposeCells.HtmlCrossType.Cross);
opts.setHtmlCrossStringType(AsposeCells.HtmlCrossType.FitToCell);
// Output HTML
workbook.save("out" + opts.getHtmlCrossStringType() + ".htm", opts);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.