Google UI应用程序脚本:使用合法纸张大小和横向布局创建Google文档

时间:2014-02-21 19:37:54

标签: google-apps-script google-docs google-docs-api

使用Google UI应用程序脚本如何创建具有合法纸张大小和横向布局的新Google Doc?在Document Service页面中,我看到了如何创建新文档并编辑大量元素,但不能编辑页面大小或布局方向。我错过了吗?或者这是不可能的事情?

1 个答案:

答案 0 :(得分:2)

可以使用班级setPageHeightsetPageWidthBody方法设置文档的纸张大小

  function setPageSize(){
    var doc = DocumentApp.create("file name");
    var body = doc.getBody();
    var pointsInInch = 72;
    body.setPageHeight(6.5 * pointsInInch);  //6.5 - inches
    body.setPageWidth(4 * pointsInInch); // 4 - inches
  }