Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created May 2, 2020 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ochilab/610325065a8f43a16b2b79535e3ae3a4 to your computer and use it in GitHub Desktop.
Save ochilab/610325065a8f43a16b2b79535e3ae3a4 to your computer and use it in GitHub Desktop.
GAS: Sheetのイメージにスクリプトを動的に割り当てる
function assignScriptToImage() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var images =sheet.getImages();
images[0].assignScript("test");
}
function test(){
Browser.msgBox("aaa");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment