Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
In this article, we will learn how to unfreeze rows, columns, and panes. If worksheets in the Excel files are frozen, sometimes we want to unfreeze the worksheet or adjust frozen rows, columns, or panes.

It’s simple to unfreeze panes with Aspose.Cells for Node.js via C++. Please use the Worksheet.unFreezePanes() method to unfreeze panes.
const path = require("path");
const AsposeCells = require("aspose.cells.node");
const dataDir = path.join(__dirname, "data");
const frozenFilePath = path.join(dataDir, "Frozen.xlsx");
const workbook = new AsposeCells.Workbook(frozenFilePath);
workbook.getWorksheets().get(0).unFreezePanes();
workbook.save("Unfrozen.xlsx");
Attached sample source Excel file.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.