top of page
- API -
excelDocument = reaper.AZ_Excel_OpenFile(filePath)
- API Detail -
▼入力値
filePath(string) : ファイルパス
▼出力値
excelDocument(ExcelDocument) : エクセルドキュメント
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
doc = reaper.AZ_Excel_OpenFile("D:\\rigdocks\\01_APIDock\\test.xlsx")
Msg(doc)
reaper.AZ_Excel_CloseFile(doc)
Excel
AZ_Excel_OpenFile
対応バージョン:
1.0.3
以降
エクセルファイルを開く
bottom of page