我有一个附加到电子表格的Google脚本,用于创建对话框消息,但我想增加消息文本的大小。以下是该脚本的相关内容: -
var ui = SpreadsheetApp.getUi();
var response = ui.prompt('Word Spiral Hint Mate', 'Which question do you want help with?', ui.ButtonSet.OK);
var qhint = response.getResponseText() ;
hintq = qhint * 1 + 2;
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Questions");
var hintCell = sheet.getRange((hintq),4);
var hCell = hintCell.getValue();
var responsea = ui.prompt('Word Spiral Hint Mate', 'Hint for Question '+ response.getResponseText() + ' is ' + hCell , ui.ButtonSet.OK);
我该怎么做 - 请问任何想法?
答案 0 :(得分:0)
您无法在提示对话框中更改文本的大小,但您可以使用HTMLService构建自己的对话框,并且可以使用HTML和CSS自定义布局。
请参阅sample code。