Freigeben über


Office.MailboxEnums.OpenLocation enum

Gibt den Speicherort an, von dem aus ein Add-In auf Daten zugreifen möchte.

Hinweise

Anwendbarer Outlook-Modus: Compose, Lesen

Wichtig: Diese Enumeration wird nur in Outlook unter Android und unter iOS ab Version 4.2443.0 unterstützt. Weitere Informationen zu apIs, die in Outlook auf mobilen Geräten unterstützt werden, finden Sie unter In Outlook auf mobilen Geräten unterstützte JavaScript-APIs.

Beispiele

// Checks if the add-in can access data from the device's photo library.
const isOpenFromPhotoLibraryAllowed = Office.context.mailbox.getIsOpenFromLocationAllowed(Office.MailboxEnums.OpenLocation.PhotoLibrary);
if (isOpenFromPhotoLibraryAllowed) {
    console.log("Access to the photo library is allowed.");
    // Do something.
} else {
    console.log("Access to the photo library isn't allowed.");
}

Felder

AccountDocument

Ein Standort, der einem Konto innerhalb eines Add-Ins zugeordnet ist.

Camera

Die Kamera des Geräts.

Local

Lokaler Speicher auf einem Gerät.

OnedriveForBusiness

OneDrive for Business.

Wichtig: Verwenden Sie für OneDrive Personal die Option OTHER.

Other

Andere Cloudspeicheranbieter, einschließlich OneDrive Personal.

PhotoLibrary

Die Fotobibliothek des Geräts.

SharePoint

SharePoint. Umfasst sowohl SharePoint Online als auch sharePoint lokal (wenn mit einem Microsoft Entra ID-Konto darauf zugegriffen wird).