top of page
- API -

reaper.AZ_Excel_SetCellValue(excelWorksheet, cell, value)

- API Detail-

▼入力値

excelWorksheet(ExcelWorksheet) : ワークシート

cell(string) : セル番地

value(string) : セルの値

- 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(worksheet, "B3", "AZSTOKE")

Msg(reaper.AZ_GetErrorCode())

reaper.AZ_Excel_SaveDocument(doc)

reaper.AZ_Excel_CloseFile(doc)

Excel

AZ_Excel_SetCellValue

Supported versions:

1.0.3

onwards

値設定(セル番地指定)

bottom of page