如何通过Google Apps脚本在页脚中添加页面导航?

时间:2018-10-09 13:28:42

标签: google-apps-script google-docs

如何通过Google Apps脚本在第二页的页脚中添加页面导航? 我需要在文档的页脚中插入一些其他信息,但我不知道如何获取getFooterPageNumber并将其插入我的代码中。我希望该页码从第二页开始插入,并看起来相同(第2页从20开始)。

function insertFooterDate() {
  var doc = DocumentApp.getActiveDocument();
  var footer = doc.getFooter();  //gets the footer
  footer.clear();  //clears all data in footer

  //Get date
  var date = Utilities.formatDate(new Date(), "GMT", "dd-MM-yyyy");
  var filename = doc.getName();

  footer.appendParagraph(date + '    ' + filename);  //adds date to footer with filename
} 

如果需要清除所有页脚以插入日期和文件名,是否可以在页脚中添加页码?

0 个答案:

没有答案