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