可讓使用者輸入一段文字的問題項目。項目包括項目存取權
透過 Form
建立。用於測驗時,系統會為這些項目評分。
// Open a form by ID and add a new paragraph text item. var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); var item = form.addParagraphTextItem(); item.setTitle('What is your address?');
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
clearValidation() | ParagraphTextItem | 移除這個段落文字項目的任何資料驗證。 |
createResponse(response) | ItemResponse | 為這個段落文字項目建立新的 ItemResponse 。 |
duplicate() | ParagraphTextItem | 建立此項目的副本並附加到表單結尾。 |
getGeneralFeedback() | QuizFeedback | 傳回在作答者答對問題後顯示的意見回饋。 |
getHelpText() | String | 取得項目的說明文字 (有時稱為 ImageItems 、PageBreakItems 和 SectionHeaderItems 等版面配置項目的說明文字)。 |
getId() | Integer | 取得項目的專屬 ID。 |
getIndex() | Integer | 取得表單中所有項目的項目索引。 |
getPoints() | Integer | 傳回可評分項目的分數值。 |
getTitle() | String | 取得項目標題 (如果是 SectionHeaderItem ,有時稱為標題文字)。 |
getType() | ItemType | 取得項目的類型,以 ItemType 表示。 |
isRequired() | Boolean | 決定作答者是否必須回答問題。 |
setGeneralFeedback(feedback) | ParagraphTextItem | 設定當作答者回答已評分的問題時,要顯示回應 答錯或不正確的答案 (例如需要手動評分的問題)。 |
setHelpText(text) | ParagraphTextItem | 設定項目的說明文字 (有時稱為 ImageItems 、PageBreakItems 和 SectionHeaderItems 等版面配置項目的說明文字)。 |
setPoints(points) | ParagraphTextItem | 設定可評分項目的價值分數。 |
setRequired(enabled) | ParagraphTextItem | 設定作答者是否必須回答問題。 |
setTitle(title) | ParagraphTextItem | 設定項目標題 (如果是 SectionHeaderItem ,有時稱為標題文字)。 |
setValidation(validation) | ParagraphTextItem | 設定這個段落文字項目的資料驗證。 |
內容詳盡的說明文件
clearValidation()
移除這個段落文字項目的任何資料驗證。
回攻員
ParagraphTextItem
:這個 ParagraphTextItem
,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
createResponse(response)
為這個段落文字項目建立新的 ItemResponse
。
參數
名稱 | 類型 | 說明 |
---|---|---|
response | String | 項目所提出問題的解答 |
回攻員
ItemResponse
:項目回應
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
duplicate()
建立此項目的副本並附加到表單結尾。
回攻員
ParagraphTextItem
:與這個 ParagraphTextItem
的重複項目,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getGeneralFeedback()
傳回在作答者答對問題後顯示的意見回饋。
回攻員
QuizFeedback
:意見回饋 (如有)。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getHelpText()
取得項目的說明文字 (有時稱為 ImageItems
、PageBreakItems
和 SectionHeaderItems
等版面配置項目的說明文字)。
回攻員
String
:項目的說明文字或說明文字
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getId()
取得項目的專屬 ID。
回攻員
Integer
:項目 ID
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getIndex()
取得表單中所有項目的項目索引。
回攻員
Integer
:商品的索引
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getPoints()
傳回可評分項目的分數值。
回攻員
Integer
:問題所對應的分數。
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getTitle()
取得項目標題 (如果是 SectionHeaderItem
,有時稱為標題文字)。
回攻員
String
:項目的標題或標題文字
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getType()
isRequired()
決定作答者是否必須回答問題。
回攻員
Boolean
:作答者是否必須回答問題
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setGeneralFeedback(feedback)
設定當作答者回答已評分的問題時,要顯示回應 答錯或不正確的答案 (例如需要手動評分的問題)。
參數
名稱 | 類型 | 說明 |
---|---|---|
feedback | QuizFeedback | 新的意見回饋 |
回攻員
ParagraphTextItem
:這個 ParagraphTextItem
,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setHelpText(text)
設定項目的說明文字 (有時稱為 ImageItems
、PageBreakItems
和 SectionHeaderItems
等版面配置項目的說明文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
text | String | 新的說明文字 |
回攻員
ParagraphTextItem
:這個 ParagraphTextItem
,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setPoints(points)
設定可評分項目的價值分數。新項目的預設值為 0。
參數
名稱 | 類型 | 說明 |
---|---|---|
points | Integer | 問題項目值多少分 |
回攻員
ParagraphTextItem
:這個 ParagraphTextItem
,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setRequired(enabled)
設定作答者是否必須回答問題。
參數
名稱 | 類型 | 說明 |
---|---|---|
enabled | Boolean | 以及作答者是否需要回答問題 |
回攻員
ParagraphTextItem
:目前的項目 (用於鏈結)
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setTitle(title)
設定項目標題 (如果是 SectionHeaderItem
,有時稱為標題文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
title | String | 新的標題或標題文字 |
回攻員
ParagraphTextItem
:這個 ParagraphTextItem
,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setValidation(validation)
設定這個段落文字項目的資料驗證。傳入空值或沒有驗證 任何已呼叫的必要函式都會移除任何先前的驗證。
參數
名稱 | 類型 | 說明 |
---|---|---|
validation | ParagraphTextValidation | 要套用至這個項目的 ParagraphTextValidation。 |
回攻員
ParagraphTextItem
:這個 ParagraphTextItem
,用於鏈結
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms