我希望电子表格中的某些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);
是否可以通过编程方式将运行脚本的工作表设置为仅查看?