Files
IronCalc/bindings/nodejs
Nicolás Hatcher 4095b7db6e UPDATE[API rename]: set_column_with => set_columns_with
Similarly set_row_height => set_rows_height
2025-02-19 18:26:49 +01:00
..
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00
2025-01-26 11:01:42 +01:00

IronCalc nodejs bindingds

Example usage:

import { Model } from '@ironcalc/wasm';
 
const model = new Model("Workbook1", "en", "UTC");

model.setUserInput(0, 1, 1, "=1+1");
const result1 = model.getFormattedCellValue(0, 1, 1);

console.log('Cell value', result1);

let result2 = model.getCellStyle(0, 1, 1);
console.log('Cell style', result2);