标签: google-apps-script
我想在Google文档中添加不同颜色(和其他样式)的文本字符串。我正在考虑为每个字符串创建一个Text对象,对其进行操作然后将其添加到doc中,但是唉,在调用时 var richText = new Text(); 我收到此错误:This constructor cannot be called directly.
var richText = new Text();
This constructor cannot be called directly.
是否有实例化Text元素的方法?如果没有,我将如何设计许多小块文字?
答案 0 :(得分:0)
只需使用段落。
有appendParagraph('string')方法,段落包含样式和编辑方法。
appendParagraph('string'
阅读documentation here