Class Attachment
附件
代表外掛程式建立的附件。您可以在不同的 Google 擴充功能產品中使用此功能,產生新的附件,例如日曆活動。
const attachment = CardService.newAttachment()
.setResourceUrl('https://fakeresourceurl.com')
.setTitle('Attachment title')
.setMimeType('text/html')
.setIconUrl('https://fakeresourceurl.com/iconurl.png');
內容詳盡的說明文件
setIconUrl(iconUrl)
設定附件的圖示網址。
參數
名稱 | 類型 | 說明 |
iconUrl | String | 附件圖示的網址。 |
回攻員
Attachment
:這個物件用於鏈結。
setMimeType(mimeType)
設定附件的 MIME 類型。
參數
名稱 | 類型 | 說明 |
mimeType | String | 附件資源中內容的 MIME 類型。 |
回攻員
Attachment
:這個物件用於鏈結。
setResourceUrl(resourceUrl)
設定附件的資源網址。
參數
名稱 | 類型 | 說明 |
resourceUrl | String | 資源的網址。 |
回攻員
Attachment
:這個物件用於鏈結。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-12-22 (世界標準時間)。
[null,null,["上次更新時間:2024-12-22 (世界標準時間)。"],[[["Represents attachments generated by add-ons in Google products like Calendar."],["Allows setting the attachment's title, resource URL, MIME type, and icon URL."],["Provides methods for customization, including `setIconUrl`, `setMimeType`, `setResourceUrl`, and `setTitle`."],["All customization methods return the Attachment object itself for method chaining."]]],[]]