我正在使用Google Data api的ListEntry为Google工作表写入价值。 https://developers.google.com/google-apps/spreadsheets/data
val row = new ListEntry()
row.getCustomElements().setValueLocal(
"email", email)
我想知道是否也可以为细胞提供颜色。
答案 0 :(得分:-2)
请参阅Range课程文档。
range.setBackground('white');
range.setBackground('#ffffff');
range.setBackgroundRGB(255,255,255);