Enum InstallationSource
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
インストール元スクリプトが現在のユーザーのアドオンとしてインストールされた方法を示す列挙型。
列挙型を呼び出すには、その親クラス、名前、プロパティを呼び出します。たとえば、
ScriptApp.InstallationSource.APPS_MARKETPLACE_DOMAIN_ADD_ON
です。
プロパティ
プロパティ | タイプ | 説明 |
APPS_MARKETPLACE_DOMAIN_ADD_ON | Enum | アドオンがユーザーのドメイン用に管理者によってインストールされている。 |
NONE | Enum | スクリプトがアドオンとして実行されていない。 |
WEB_STORE_ADD_ON | Enum | アドオンはユーザーが Chrome ウェブストアからインストールしたものです。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eInstallationSource\u003c/code\u003e is used to identify how a script was installed as an add-on.\u003c/p\u003e\n"],["\u003cp\u003eThis enum includes three properties: \u003ccode\u003eAPPS_MARKETPLACE_DOMAIN_ADD_ON\u003c/code\u003e, \u003ccode\u003eNONE\u003c/code\u003e, and \u003ccode\u003eWEB_STORE_ADD_ON\u003c/code\u003e, indicating whether the script was installed by a domain admin, is not an add-on, or was installed from the Chrome Web Store, respectively.\u003c/p\u003e\n"],["\u003cp\u003eTo access the enum values, use the syntax: \u003ccode\u003eScriptApp.InstallationSource.PROPERTY_NAME\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Enum InstallationSource\n\nInstallationSource\n\nAn enumeration that indicates how the script came to be installed as an add-on for the current\nuser.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nScriptApp.InstallationSource.APPS_MARKETPLACE_DOMAIN_ADD_ON`. \n\n### Properties\n\n| Property | Type | Description |\n|----------------------------------|--------|------------------------------------------------------------------|\n| `APPS_MARKETPLACE_DOMAIN_ADD_ON` | `Enum` | Add-on was installed by the administrator for the user's domain. |\n| `NONE` | `Enum` | Script is not running as an add-on. |\n| `WEB_STORE_ADD_ON` | `Enum` | Add-on was installed by the user from the Chrome Web Store. |"]]