通用元素。Document
內容會以元素的形式呈現。舉例來說,List
、Paragraph
和 Table
都是元素,並繼承 Element
定義的所有方法,例如 get
。
實作類別
名稱 | 簡短說明 |
---|---|
Body | Google 文件文件中分頁的內容。 |
Container | 通用元素,可能包含其他元素。 |
Date | 代表格式化日期的元素 |
Equation | 代表數學運算式的元素。 |
Equation | 在數學 Equation 中代表函式的元素。 |
Equation | 這個元素代表數學 Equation 中的函式分隔符。 |
Equation | 在數學 Equation 中代表符號的元素。 |
Footer | 代表頁尾部分的元素。 |
Footnote | 代表附註的元素。 |
Footnote | 代表附註區段的元素。 |
Header | 代表標題區段的元素。 |
Horizontal | 代表水平線的元素。 |
Inline | 代表嵌入式繪圖的元素。 |
Inline | 代表嵌入圖片的元素。 |
List | 代表清單項目的元素。 |
Page | 代表分頁的元素。 |
Paragraph | 代表段落的元素。 |
Person | 代表個人連結的元素。 |
Rich | 代表 Google 資源連結的元素,例如雲端硬碟檔案或 YouTube 影片。 |
Table | 代表資料表的元素。 |
Table | 代表表格儲存格的元素。 |
Table | 包含目錄的元素。 |
Table | 代表表格資料列的元素。 |
Text | 代表富文字區域的元素。 |
Unsupported | 代表未知或無法受指令碼影響的區域的元素,例如頁碼。 |
方法
內容詳盡的說明文件
as Body()
as Date()
as Equation()
as Equation Function()
以 Equation
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Equation
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Equation Function Argument Separator()
以 Equation
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Equation
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Equation Symbol()
以 Equation
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Equation
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Footnote()
as Footnote Section()
以 Footnote
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Footnote
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Header Section()
以 Header
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Header
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Horizontal Rule()
以 Horizontal
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Horizontal
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Inline Drawing()
以 Inline
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Inline
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Inline Image()
以 Inline
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Inline
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as List Item()
as Page Break()
as Paragraph()
as Person()
as Rich Link()
as Table()
as Table Cell()
as Table Of Contents()
以 Table
的形式傳回目前元素。
只要知道特定元素屬於特定類型,即可使用這個方法協助自動完成功能。
回攻員
Table
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
as Table Row()
as Text()
copy()
get Attributes()
擷取元素的屬性。
結果是物件,其中包含每個有效元素屬性的屬性,每個屬性名稱都對應至 Document
列舉中的項目。
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Append a styled paragraph. const par = body.appendParagraph('A bold, italicized paragraph.'); par.setBold(true); par.setItalic(true); // Retrieve the paragraph's attributes. const atts = par.getAttributes(); // Log the paragraph attributes. for (const att in atts) { Logger.log(`${att}:${atts[att]}`); }
回攻員
Object
:元素的屬性。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Next Sibling()
get Parent()
擷取元素的父項元素。
父項元素包含目前元素。
回攻員
Container
:父項元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Previous Sibling()
get Type()
擷取元素的 Element
。
使用 get
判斷特定元素的確切類型。
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Obtain the first element in the active tab's body. const firstChild = body.getChild(0); // Use getType() to determine the element's type. if (firstChild.getType() === DocumentApp.ElementType.PARAGRAPH) { Logger.log('The first element is a paragraph.'); } else { Logger.log('The first element is not a paragraph.'); }
回攻員
Element
:元素類型。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is At Document End()
merge()
將元素與相同類型的前一個同胞元素合併。
只能合併相同 Element
的元素。目前元素中包含的任何子項元素都會移至前一個同層元素。
系統會從文件中移除目前的元素。
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Example 1: Merge paragraphs // Append two paragraphs to the document's active tab. const par1 = body.appendParagraph('Paragraph 1.'); const par2 = body.appendParagraph('Paragraph 2.'); // Merge the newly added paragraphs into a single paragraph. par2.merge(); // Example 2: Merge table cells // Create a two-dimensional array containing the table's cell contents. const cells = [ ['Row 1, Cell 1', 'Row 1, Cell 2'], ['Row 2, Cell 1', 'Row 2, Cell 2'], ]; // Build a table from the array. const table = body.appendTable(cells); // Get the first row in the table. const row = table.getRow(0); // Get the two cells in this row. const cell1 = row.getCell(0); const cell2 = row.getCell(1); // Merge the current cell into its preceding sibling element. const merged = cell2.merge();
回攻員
Element
:已合併的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
remove From Parent()
從父項移除元素。
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Remove all images in the active tab's body. const imgs = body.getImages(); for (let i = 0; i < imgs.length; i++) { imgs[i].removeFromParent(); }
回攻員
Element
:已移除的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Attributes(attributes)
設定元素的屬性。
指定的屬性參數必須是物件,其中每個屬性名稱都是 Document
列舉中的項目,每個屬性值則是要套用的新值。
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Define a custom paragraph style. const style = {}; style[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.RIGHT; style[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri'; style[DocumentApp.Attribute.FONT_SIZE] = 18; style[DocumentApp.Attribute.BOLD] = true; // Append a plain paragraph. const par = body.appendParagraph('A paragraph with custom style.'); // Apply the custom style. par.setAttributes(style);
參數
名稱 | 類型 | 說明 |
---|---|---|
attributes | Object | 元素的屬性。 |
回攻員
Element
:目前的元素。
授權
使用這個方法的腳本需要具備下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents