如何使用Google Docs API将背景颜色设置为透明。我可以将背景设置为特定颜色,也就是“#aa00aa”。但是,我不确定如何将其设置为透明。例如,假设你有:
function myTypes() {
var selection = DocumentApp.getActiveDocument().getSelection();
if (selection) {
var elements = selection.getRangeElements();
for (var i = 0; i < elements.length; i++) {
var element = elements[i];
// Only modify elements that can be edited as text; skip images and other non-text elements.
if (element.getElement().editAsText) {
var text = element.getElement().editAsText();
// Edit the selected part of the element, or the full element if it's completely selected.
if (element.isPartial()) {
text.setFontSize(element.getStartOffset(), element.getEndOffsetInclusive(), 10);
text.setFontFamily(element.getStartOffset(), element.getEndOffsetInclusive(), "Consolas");
text.setForegroundColor(element.getStartOffset(), element.getEndOffsetInclusive(), "#cc0cc");
text.setBackgroundColor(element.getStartOffset(), element.getEndOffsetInclusive(), "#aa00aa");
} else {
text.setFontSize(10);
text.setFontFamily("Consolas");
text.setForegroundColor("#cc00cc");
text.setBackgroundColor("#aa00aa");
}
}
}}
}
答案 0 :(得分:2)
对我有用的是使用rgba代码,例如
rgba(255, 255, 255, 1);
您可以使用最后一个标准设置透明度; a 0表示完全透明,1表示不透明。因此,您应该执行以下操作以使背景透明:
text.setBackgroundColor("rgba(0, 0, 0, 0)");
答案 1 :(得分:0)
我发现使用可以使用术语&#34; null&#34;没有引号。
text.setBackgroundColor(null);