Class DocumentApp

DocumentApp

บริการเอกสารจะสร้างและเปิด Documents ที่แก้ไขได้

// Open a document by ID.
// TODO(developer): Replace the ID with your own.
var doc = DocumentApp.openById('DOCUMENT_ID');

// Create and open a document.
doc = DocumentApp.create('Document Name');

พร็อพเพอร์ตี้

พร็อพเพอร์ตี้ประเภทคำอธิบาย
AttributeAttributeการแจงนับ Attribute
ElementTypeElementTypeการแจงนับ ElementType
FontFamilyFontFamilyการแจงนับ FontFamily
GlyphTypeGlyphTypeการแจงนับ GlyphType
HorizontalAlignmentHorizontalAlignmentการแจงนับ HorizontalAlignment
ParagraphHeadingParagraphHeadingการแจงนับ ParagraphHeading
PositionedLayoutPositionedLayoutการแจงนับ PositionedLayout
TextAlignmentTextAlignmentการแจงนับ TextAlignment
VerticalAlignmentVerticalAlignmentการแจงนับ VerticalAlignment

เมธอด

วิธีการประเภทการแสดงผลรายละเอียดแบบย่อ
create(name)Documentสร้างและส่งคืนเอกสารใหม่
getActiveDocument()Documentแสดงผลเอกสารที่สคริปต์ผูกกับคอนเทนเนอร์
getUi()Uiส่งคืนอินสแตนซ์ของสภาพแวดล้อมอินเทอร์เฟซผู้ใช้ของเอกสารที่อนุญาตให้สคริปต์เพิ่ม ฟีเจอร์ต่างๆ เช่น เมนู กล่องโต้ตอบ และแถบด้านข้าง
openById(id)Documentแสดงเอกสารที่มีรหัสตามที่ระบุ
openByUrl(url)Documentเปิดและแสดงผลเอกสารที่มี URL ที่ระบุ

เอกสารโดยละเอียด

create(name)

สร้างและส่งคืนเอกสารใหม่

// Create and open a new document.
var doc = DocumentApp.create('Document Name');

พารามิเตอร์

ชื่อประเภทคำอธิบาย
nameStringชื่อเอกสารใหม่

รีเทิร์น

Document — อินสแตนซ์เอกสารใหม่

การให้สิทธิ์

สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ

  • https://www.googleapis.com/auth/documents

getActiveDocument()

แสดงผลเอกสารที่สคริปต์ผูกกับคอนเทนเนอร์ เพื่อโต้ตอบกับเอกสาร สคริปต์ไม่ได้ผูกกับคอนเทนเนอร์ ให้ใช้ openById(id) หรือ openByUrl(url) แทน

// Get the document to which this script is bound.
var doc = DocumentApp.getActiveDocument();

รีเทิร์น

Document — อินสแตนซ์ของเอกสาร

การให้สิทธิ์

สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getUi()

ส่งคืนอินสแตนซ์ของสภาพแวดล้อมอินเทอร์เฟซผู้ใช้ของเอกสารที่อนุญาตให้สคริปต์เพิ่ม ฟีเจอร์ต่างๆ เช่น เมนู กล่องโต้ตอบ และแถบด้านข้าง สคริปต์สามารถโต้ตอบกับ UI สำหรับ อินสแตนซ์ปัจจุบันของเอกสารที่เปิดอยู่ และเฉพาะเมื่อสคริปต์มีการเชื่อมโยงกับเอกสารเท่านั้น สำหรับข้อมูลเพิ่มเติม โปรดดู เพื่อไปยังเมนู รวมถึงกล่องโต้ตอบและแถบด้านข้าง

// Add a custom menu to the active document, including a separator and a sub-menu.
function onOpen(e) {
  DocumentApp.getUi()
      .createMenu('My Menu')
      .addItem('My menu item', 'myFunction')
      .addSeparator()
      .addSubMenu(DocumentApp.getUi().createMenu('My sub-menu')
          .addItem('One sub-menu item', 'mySecondFunction')
          .addItem('Another sub-menu item', 'myThirdFunction'))
      .addToUi();
}

รีเทิร์น

Ui — อินสแตนซ์ของสภาพแวดล้อมอินเทอร์เฟซผู้ใช้ของเอกสารนี้


openById(id)

แสดงเอกสารที่มีรหัสตามที่ระบุ หากสคริปต์ผูกกับคอนเทนเนอร์ ใช้ getActiveDocument() แทน

// Open a document by ID.
// TODO(developer): Replace the ID with your own.
var doc = DocumentApp.openById('DOCUMENT_ID');

พารามิเตอร์

ชื่อประเภทคำอธิบาย
idStringรหัสของเอกสารที่จะเปิด

รีเทิร์น

Document — อินสแตนซ์ของเอกสาร

การให้สิทธิ์

สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ

  • https://www.googleapis.com/auth/documents

openByUrl(url)

เปิดและแสดงผลเอกสารที่มี URL ที่ระบุ หากสคริปต์ผูกกับคอนเทนเนอร์ เอกสาร ให้ใช้ getActiveDocument() แทน

// Open a document by URL.
var doc = DocumentApp.openByUrl(
    'https://docs.google.com/document/d/1234567890abcdefghijklmnopqrstuvwxyz_a1b2c3/edit');

พารามิเตอร์

ชื่อประเภทคำอธิบาย
urlStringURL ของเอกสารที่จะเปิด

รีเทิร์น

Document — อินสแตนซ์ของเอกสาร

การให้สิทธิ์

สคริปต์ที่ใช้เมธอดนี้ต้องมีการให้สิทธิ์กับขอบเขตต่อไปนี้อย่างน้อย 1 รายการ

  • https://www.googleapis.com/auth/documents