📜  单元格应用程序脚本中的 RichText URL - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:26.134000             🧑  作者: Mango

代码示例1
//OnlyCurrentDoc

function linkCellContents() {
 var range = SpreadsheetApp.getActive().getRange("Link!A2");
 var richValue = SpreadsheetApp.newRichTextValue()
   .setText("More information")
   .setLinkUrl("https://example.com")
   .build();
 range.setRichTextValue(richValue);
}