top of page
- API -

reaper.AZ_Excel_SaveDocument(excelDocument, newPath)

- API Detail-

▼Input values

filePath(string): file path

newPath(string): save path (optional, default: original file path)

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_GOLD")


doc = reaper.AZ_Excel_OpenFile("D:\\rigdocks\\01_APIDock\\test.xlsx")


worksheet = reaper.AZ_Excel_OpenWorksheet_ByNumber(doc, 1)


reaper.AZ_Excel_SetCellValue_ByNumber(worksheet, 1, 1, "AZSTOKE")


reaper.AZ_Excel_SaveDocument(doc)


Msg(reaper.AZ_GetErrorCode())


reaper.AZ_Excel_CloseFile(doc)

Excel

AZ_Excel_SaveDocument

Supported versions:

1.1.0

onwards

Save

bottom of page