我在哪里可以找到Paragraph.prototype或如何将其扩展?

时间:2019-02-01 20:45:18

标签: javascript google-apps-script google-docs

我想扩展Paragraph(类型?类?对象?)并向其中添加一些重复的功能,例如:

Paragraph.prototype.isEmpty = function() {
    return this.getText().trim().length === 0;
};
  

ReferenceError:未定义“段落”。 (第23行,文件“代码”)

DocumentApp.Paragraph.prototype.isEmpty = function() {
    return this.getText().trim().length === 0;
};
  

TypeError:无法从未定义中读取属性“ prototype”。 (第23行,文件“代码”)

但是这些都不起作用。我将此代码放在Code.gs文件中,并尝试使用它,但是编译器说没有这种东西。

这东西到底是什么,我该如何添加?

0 个答案:

没有答案