var selectedElements = selection.getSelectedElements();
for (var i = 0; i < selectedElements.length; ++i) {
var selectedElement = selectedElements[i];
// Only modify elements that can be edited as text; skip images and other
// non-text elements.
var text = selectedElement.getElement().editAsText();
// Change the background color of the selected part of the element, or the
// full element if it's completely selected.
if (selectedElement.isPartial()) {
text.setColor(selectedElement.getStartOffset(),
selectedElement.getEndOffsetInclusive(), '#69359c');
}
}
}
上面的文本在 Google Doc 中进行了选择,并将其更改为十六进制代码 #69359c(深紫色)。我搜索了很多网站,很多 git,并在我的项目上向很多朋友寻求帮助。
我的最终项目是这样的:
- 使用我的选择器为 Google Docs 创建一个菜单 (DONE)
- 能够突出显示一定数量的文本并将其更改为一组颜色(ROY G. BIV / 彩虹)。
- 格式仅适用于 Google 文档。
如果有人可以帮助我,将不胜感激。