Class Attachment
附件
代表外掛程式所建立的附件。這種 API 可以用來
Google 這項可擴充產品可以產生新的附件,例如日曆活動。
var 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-08-21 (世界標準時間)。
[null,null,["上次更新時間:2024-08-21 (世界標準時間)。"],[[["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."]]],[]]