20201211.js 432 Bytes
Newer Older
Leon's avatar
Leon committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
require("topsin.excelxs");
try {
    var book = new Book;
    var ok = book.open("test.xlsx");
    if (!ok) throw "open xlsx failed.";
    var sheet = book.getSheet(0);
    var format = book.addFormat();
    format.setPatternForegroundColor('#FF0000');
    format.setFillPattern('SOLID');
    sheet.setCellValue(0, 0, "DIRTY");
    sheet.setCellFormat(0, 0, format);
    book.save();
    book.close();
} catch(e) {
    print(e);
}