将工作表保护设置为仅查看运行脚本的人

时间:2019-05-07 18:48:45

标签: google-apps-script google-sheets

我希望电子表格中的某些Google表格在用户运行脚本后变为仅查看状态。这可能吗?

我在protection docs中尝试了几种方法。

// this automatically excludes current user
protection.removeEditors(protection.getEditors());

// even this doesn't remove "me" as an editor
var me = Session.getEffectiveUser();
protection.removeEditor(me);

是否可以通过编程方式将运行脚本的工作表设置为仅查看?

0 个答案:

没有答案