Office.MailboxEnums.LocationType enum
指定约会位置的类型。
注解
适用的 Outlook 模式:撰写或阅读
示例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/90-other-item-apis/get-add-remove-enhancedlocation-appointment.yaml
const locations = [
{
id: "Contoso",
type: Office.MailboxEnums.LocationType.Custom
},
{
id: "room500@test.com",
type: Office.MailboxEnums.LocationType.Room
}
];
Office.context.mailbox.item.enhancedLocation.addAsync(locations, (result) => {
if (result.status === Office.AsyncResultStatus.Succeeded) {
console.log(`Successfully added locations ${JSON.stringify(locations)}`);
} else {
console.error(`Failed to add locations. Error message: ${result.error.message}`);
}
});
字段
Custom = "custom" | 自定义位置。 自定义位置没有 SMTP 地址。 注意:作为约会位置添加 的个人联系人组 不会由 EnhancedLocation.getAsync 方法返回。 |
Room = "room" | 具有 SMTP 地址的会议室或类似资源。 |