谷歌应用程序脚本中的反向查找枚举

时间:2017-08-15 05:15:31

标签: javascript google-apps-script colors enums google-calendar-api

函数toColor()应该将数字(https://developers.google.com/apps-script/reference/calendar/event-color)解析为颜色名称。

Object.prototype.toColor = function() {
    return CalendarApp.EventColor[this];
};

for(var i=0;i<events.length;i++)
sheet.appendRow(events[i].getColor().toColor());

我尝试了上面的代码,但它说未定义。

0 个答案:

没有答案