Office.MailboxEnums.SaveLocation enum
アドインがデータを保存する場所を指定します。
注釈
適用される Outlook モード: Compose、読み取り
重要: この列挙型は、Outlook on Android およびバージョン 4.2443.0 以降の iOS でのみサポートされています。 モバイル デバイス上の Outlook でサポートされる API の詳細については、「モバイル デバイスで Outlook でサポートされている Outlook JavaScript API」を参照してください。
例
// Checks if the add-in can save data to SharePoint.
const isSaveToSharePointAllowed = Office.context.mailbox.getIsSaveToLocationAllowed(Office.MailboxEnums.SaveLocation.SharePoint);
if (isSaveToSharePointAllowed) {
console.log("Saving to SharePoint is allowed.");
// Do something.
} else {
console.log("Saving to SharePoint isn't allowed.");
}
フィールド
AccountDocument | アドイン内のアカウントに関連付けられている場所。 |
Box | ボックス |
Dropbox | Dropbox。 |
GoogleDrive | Google ドライブ。 |
Local | デバイス上のローカル ストレージ。 |
OnedriveForBusiness | OneDrive for Business。 重要: OneDrive Personal の場合は、OTHER を使用します。 |
Other | OneDrive Personal を含む他のクラウド ストレージ プロバイダー。 |
PhotoLibrary | デバイスのフォト ライブラリ。 |
SharePoint | SharePoint。 SharePoint Online と SharePoint オンプレミスの両方が含まれます (Microsoft Entra ID アカウントでアクセスする場合)。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins