使用Google UI应用程序脚本如何创建具有合法纸张大小和横向布局的新Google Doc?在Document Service页面中,我看到了如何创建新文档并编辑大量元素,但不能编辑页面大小或布局方向。我错过了吗?或者这是不可能的事情?
答案 0 :(得分:2)
可以使用班级setPageHeight的setPageWidth和Body方法设置文档的纸张大小
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
}