- API -
worksheetList = reaper.AZ_Excel_GetWorksheetList(excelDocument, excludeList, isRegex)
- API Detail -
▼入力値
excelDocument(ExcelDocument) : エクセルドキュメント
excludeList(StringArray) : 除外リスト(任意 デフォルト : 空)
isRegex(boolean) : 正規表現検索(任意 デフォルト : FALSE)
▼出力値
worksheetList(ExcelSheetInfoArray) : ワークシート
-Worksheet : ワークシートのポインタ
- Name : ワークシート名
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
function showObject(object, depth)
local obj = object
if depth == nil then depth = 0 end
if(type(obj) == "table") then
Msg("")
for k, v in pairs(obj) do
for i = 1, depth, 1 do reaper.ShowConsoleMsg(" ") end
reaper.ShowConsoleMsg(tostring(k) .. " : ")
showObject(v, depth + 4)
end
else
Msg(obj)
end
end
doc = reaper.AZ_Excel_OpenFile("D:\\rigdocks\\01_APIDock\\test.xlsx")
sheetList = reaper.AZ_Excel_GetWorksheetList(doc, "PL_", false, {"2"})
Msg("result : " .. tostring(reaper.AZ_GetErrorCode()))
showObject(sheetList)
reaper.AZ_Excel_CloseFile(doc)