有没有办法在Google Apps脚本中获取角色属性?

问题描述 投票:0回答:1

我试图在文档中获得单个字符的FOREGROUND_COLOR值。我已经阅读了文档,到目前为止我还没有找到获得上述价值的方法。我明白文本课可以做到这一点;但它只适用于大块文本,而不适用于单数字符。

google-apps-script google-docs
1个回答
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个字符的颜色。

© www.soinside.com 2019 - 2024. All rights reserved.