我通过脚本创建了一个google文档,并希望通过以下代码将表格插入其中:
var row1 = "some city"
var row2 = "some text"
var rowsData = [[row1, row2]];
var table = body.appendTable(rowsData);
table.setBorderWidth(0);
style[DocumentApp.Attribute.BOLD] = true;
style[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.CENTER;
table.setAttributes(style);
我希望单元格中的所有文本都是粗体和居中的。但是我看到只应用了粗体属性。 我试图添加一些脚本
var cell1 = table.getCell(0, 0);
var cell2 = table.getCell(0, 1);
cell1.setAttributes(style);
cell1.editAsText().setAttributes(style);
但没有效果。
请告诉我如何正确地将文字放在单元格中!
答案 0 :(得分:8)
文本对齐不能应用于" table-cell" item,它只能在"段落#34;项目。 得到"段落#34;来自" table-cell",您需要执行以下操作:
var cellStyle = {};
cellStyle[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.CENTER;
tabel.getRow(0).getCell(1).getChild(0).asParagraph().setAttributes(cellStyle)
(感谢Stefan van Aalst his answer)
答案 1 :(得分:1)
答案 2 :(得分:0)
我相信你想使用.setAlignment而不是.setAttribute或style []。
cell1.setAlignment(DocumentApp.HorizontalAlignment.CENTER);