Answers for "google scripts get document"

0

google scripts get document

// Open a document by ID.
var doc = DocumentApp.openById('DOCUMENT_ID_GOES_HERE');
// Open a document by URL.
var doc = DocumentApp.openByUrl(url);
// Get the document to which this script is bound.
var doc = DocumentApp.getActiveDocument();
Posted by: Guest on September-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language