スクリプトを使用して特定のGoogleAppsワークシートをロックする方法はありますか?
現在のスプレッドシートの名前を入力ボックスに入力したものに変更するこのコードがあります。
// The code below will rename the active sheet to what you enter in the input box
var myValue = Browser.inputBox("Enter: LastMonth - Year");
SpreadsheetApp.getActiveSpreadsheet().renameActiveSheet(myValue);
SpreadsheetApp.getActiveSpreadsheet().getRange("A1").setValue(myValue);
上記のコードに何を追加すれば、同じワークシートをロックし、名前を変更しただけで、そのワークシートを編集できるようになります。それは可能ですか?