如何使用脚本

时间:2015-09-10 02:34:32

标签: google-apps-script google-sheets

我在googlesheet中编写一些JavaScript代码时遇到问题,这些代码将找到工作表的所有当前编辑器(除了所有者)并删除他们的编辑写入。目前我一直在尝试使用:

//remove the current editors and only allow the origional owner to have access.
var SpreadSheet = SpreadsheetApp.getActiveSpreadsheet();
SpreadSheet.removeEditor(SpreadSheet.getEditors())

这会出现一个“无效的电子邮件:”,其中包含一系列编辑器电子邮件。有没有办法可能将这个电子邮件字符串分开,然后通过循环运行“removeEditor”代码,以获取需要删除的所需数量的编辑器?

0 个答案:

没有答案