Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
The following code loads the workbook and checks if its VBA project is signed using Workbook.getVbaProject() property. The method will return true if the project is signed; otherwise, it will return false.
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, "Sample1.xlsx");
// Loads the workbook which contains hidden external links
const workbook = new AsposeCells.Workbook(filePath);
console.log("VBA Project is Signed: " + workbook.getVbaProject().isSigned());
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.