可顯示影片的版面配置項目。你可以透過 Form
存取或建立項目。
// Open a form by ID and add three new video items, using a long URL, // a short URL, and a video ID. var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); form.addVideoItem() .setTitle('Video Title') .setHelpText('Video Caption') .setVideoUrl('www.youtube.com/watch?v=1234abcdxyz'); form.addVideoItem() .setTitle('Video Title') .setHelpText('Video Caption') .setVideoUrl('youtu.be/1234abcdxyz'); form.addVideoItem() .setTitle('Video Title') .setHelpText('Video Caption') .setVideoUrl('1234abcdxyz');
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
duplicate() | VideoItem | 建立此項目的副本並附加到表單結尾。 |
getAlignment() | Alignment | 取得影片水平對齊。 |
getHelpText() | String | 取得項目的說明文字 (有時稱為 ImageItems 、PageBreakItems 和 SectionHeaderItems 等版面配置項目的說明文字)。 |
getId() | Integer | 取得項目的專屬 ID。 |
getIndex() | Integer | 取得表單中所有項目的項目索引。 |
getTitle() | String | 取得項目標題 (如果是 SectionHeaderItem ,有時稱為標題文字)。 |
getType() | ItemType | 取得項目的類型,以 ItemType 表示。 |
getWidth() | Integer | 取得影片的寬度 (以像素為單位)。 |
setAlignment(alignment) | VideoItem | 設定影片的水平對齊方式。 |
setHelpText(text) | VideoItem | 設定項目的說明文字 (有時稱為 ImageItems 、PageBreakItems 和 SectionHeaderItems 等版面配置項目的說明文字)。 |
setTitle(title) | VideoItem | 設定項目標題 (如果是 SectionHeaderItem ,有時稱為標題文字)。 |
setVideoUrl(youtubeUrl) | VideoItem | 根據指定的 YouTube 網址或 YouTube 影片 ID 設定影片本身。 |
setWidth(width) | VideoItem | 設定影片的寬度 (以像素為單位)。 |
內容詳盡的說明文件
duplicate()
getAlignment()
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
getTitle()
取得項目標題 (如果是 SectionHeaderItem
,有時稱為標題文字)。
回攻員
String
:項目的標題或標題文字
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getType()
getWidth()
取得影片的寬度 (以像素為單位)。
回攻員
Integer
:寬度 (以像素為單位)
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setAlignment(alignment)
setHelpText(text)
設定項目的說明文字 (有時稱為 ImageItems
、PageBreakItems
和 SectionHeaderItems
等版面配置項目的說明文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
text | String | 新的說明文字 |
回攻員
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setTitle(title)
設定項目標題 (如果是 SectionHeaderItem
,有時稱為標題文字)。
參數
名稱 | 類型 | 說明 |
---|---|---|
title | String | 新的標題或標題文字 |
回攻員
授權
使用這個方法的指令碼需要下列一或多個範圍的授權:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms