Office.MailboxEnums.OpenLocation enum
指定外接程序要从其访问数据的位置。
注解
适用的 Outlook 模式:Compose、读取
重要提示:从版本 4.2443.0 开始,此枚举仅在 Android 版 Outlook 和 iOS 中受支持。 若要详细了解移动设备上的 Outlook 支持的 API,请参阅移动设备上的 Outlook 支持的 Outlook JavaScript API。
示例
// 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.");
}
字段
AccountDocument | 与外接程序中的帐户关联的位置。 |
Camera | 设备的相机。 |
Local | 设备上的本地存储。 |
OnedriveForBusiness | OneDrive for Business。 重要提示:对于 OneDrive 个人版,请使用 OTHER。 |
Other | 其他云存储提供商,包括 OneDrive Personal。 |
PhotoLibrary | 设备的照片库。 |
SharePoint | SharePoint。 如果使用Microsoft Entra ID帐户) 访问,则包括 SharePoint Online 和 SharePoint 本地 (。 |