有没有办法在Google Apps脚本中获取字符属性?

时间:2019-03-25 17:11:04

标签: google-apps-script google-docs

我正在尝试获取文档中单个字符的FOREGROUND_COLOR值。我已经阅读了文档,到目前为止,我还没有找到获得上述价值的方法。我知道文本类可以做到这一点;但是它仅适用于大块文本,而不适用于单个字符。

1 个答案:

答案 0 :(得分:0)

您可以在文本元素上使用getForegroundColor(offset)并指定字符偏移量以在特定位置获得颜色。参见https://developers.google.com/apps-script/reference/document/text#getforegroundcoloroffset

例如:

var body = DocumentApp.getActiveDocument().getBody();
var content = body.editAsText();
Logger.log(content.getForegroundColor(7));

将给出文档中第7个字符的颜色。