这是我的代码。家庭和大小的工作,但它不是中心。
function styleFooter() {
var body = DocumentApp.getActiveDocument();
var foot = body.getFooter();
var style = {};
style[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.CENTER;
style[DocumentApp.Attribute.FONT_FAMILY] = 'Helvetica Neue';
style[DocumentApp.Attribute.FONT_SIZE] = 9;
foot.setAttributes(style);
}
答案 0 :(得分:2)
这是因为您需要sendFriendRequest
并迭代页脚的每个段落。试试这个,它对我有用:
getParagraphs()
来自Google文档documentation:
HorizontalRule可以包含在ListItem或Paragraph中,但本身不能包含任何其他元素。