通过脚本在Google表格中创建Landscape-PDF

时间:2019-05-14 08:58:32

标签: pdf google-apps-script landscape

我正在通过电子邮件发送GSheet作为PDF附件。问题是如何使用Landscape而不是Portrait进行制作?默认情况下,它在文件中下载Landscape,但在代码中它成为Portrait。

我需要指定什么参数?

  var pdf = DriveApp.getFileById(PDFsheet_ID).getAs("application/pdf").getBytes();

  var attach = {fileName:'Test Franchise PDF.pdf',content:pdf, mimeType:'application/pdf'};

// Send the freshly constructed PDF as attachment via email 
 MailApp.sendEmail('email@gmail.com', 'test pdf', 'check it!', {attachments:[attach]}); 

0 个答案:

没有答案