Class Attachment
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
المرفق
يمثّل مرفقًا أنشأته إضافة. ويمكن استخدام ذلك في سياق منتجات توسيع نطاق استخدام Google المختلفة لإنشاء مرفقات جديدة، مثل أحداث "تقويم Google".
const attachment = CardService.newAttachment()
.setResourceUrl('https://fakeresourceurl.com')
.setTitle('Attachment title')
.setMimeType('text/html')
.setIconUrl('https://fakeresourceurl.com/iconurl.png');
مستندات تفصيلية
setIconUrl(iconUrl)
تُستخدَم لضبط عنوان URL للرمز المرتبط بالمرفق.
المعلمات
الاسم | النوع | الوصف |
iconUrl | String | عنوان URL لرمز المرفق |
الإرجاع
Attachment
: هذا العنصر، لإنشاء سلسلة.
setMimeType(mimeType)
لضبط نوع MIME للمرفق.
المعلمات
الاسم | النوع | الوصف |
mimeType | String | نوع MIME للمحتوى في مورد المرفق. |
الإرجاع
Attachment
: هذا العنصر، لإنشاء سلسلة.
setResourceUrl(resourceUrl)
تُستخدَم لضبط عنوان URL للمورد المرتبط بالمرفق.
المعلمات
الاسم | النوع | الوصف |
resourceUrl | String | عنوان URL لمورد |
الإرجاع
Attachment
: هذا العنصر، لإنشاء سلسلة.
setTitle(title)
لضبط عنوان المرفق.
المعلمات
الاسم | النوع | الوصف |
title | String | عنوان المرفق |
الإرجاع
Attachment
: هذا العنصر، لإنشاء سلسلة.
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eRepresents attachments generated by add-ons in Google products like Calendar.\u003c/p\u003e\n"],["\u003cp\u003eAllows setting the attachment's title, resource URL, MIME type, and icon URL.\u003c/p\u003e\n"],["\u003cp\u003eProvides methods for customization, including \u003ccode\u003esetIconUrl\u003c/code\u003e, \u003ccode\u003esetMimeType\u003c/code\u003e, \u003ccode\u003esetResourceUrl\u003c/code\u003e, and \u003ccode\u003esetTitle\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eAll customization methods return the Attachment object itself for method chaining.\u003c/p\u003e\n"]]],[],null,["# Class Attachment\n\nAttachment\n\nRepresents an attachment created by an add-on. This can be used within the context of different\nGoogle extensibility products to generate new attachments, such as for Calendar events.\n\n```javascript\nconst attachment = CardService.newAttachment()\n .setResourceUrl('https://fakeresourceurl.com')\n .setTitle('Attachment title')\n .setMimeType('text/html')\n .setIconUrl('https://fakeresourceurl.com/iconurl.png');\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|--------------------------------------------------------|-----------------|-------------------------------------------|\n| [setIconUrl(iconUrl)](#setIconUrl(String)) | [Attachment](#) | Sets the icon URL for the attachment. |\n| [setMimeType(mimeType)](#setMimeType(String)) | [Attachment](#) | Sets the MIME type for the attachment. |\n| [setResourceUrl(resourceUrl)](#setResourceUrl(String)) | [Attachment](#) | Sets the resource URL for the attachment. |\n| [setTitle(title)](#setTitle(String)) | [Attachment](#) | Sets the title for the attachment. |\n\nDetailed documentation\n----------------------\n\n### `set``Icon``Url(iconUrl)`\n\nSets the icon URL for the attachment.\n\n#### Parameters\n\n| Name | Type | Description |\n|-------------|----------|-----------------------------------------|\n| `icon``Url` | `String` | The URL address of the attachment icon. |\n\n#### Return\n\n\n[Attachment](#) --- This object, for chaining.\n\n*** ** * ** ***\n\n### `set``Mime``Type(mimeType)`\n\nSets the MIME type for the attachment.\n\n#### Parameters\n\n| Name | Type | Description |\n|--------------|----------|----------------------------------------------------------|\n| `mime``Type` | `String` | The MIME type of the content in the attachment resource. |\n\n#### Return\n\n\n[Attachment](#) --- This object, for chaining.\n\n*** ** * ** ***\n\n### `set``Resource``Url(resourceUrl)`\n\nSets the resource URL for the attachment.\n\n#### Parameters\n\n| Name | Type | Description |\n|-----------------|----------|--------------------------------|\n| `resource``Url` | `String` | The URL address of a resource. |\n\n#### Return\n\n\n[Attachment](#) --- This object, for chaining.\n\n*** ** * ** ***\n\n### `set``Title(title)`\n\nSets the title for the attachment.\n\n#### Parameters\n\n| Name | Type | Description |\n|---------|----------|------------------------------|\n| `title` | `String` | The title of the attachment. |\n\n#### Return\n\n\n[Attachment](#) --- This object, for chaining."]]