Office.LocationDetails interface

表示位置。 只读。

注解

[ API set: Mailbox 1.8 ]

最低权限级别读取项

适用的 Outlook 模式:撰写或阅读

示例

Office.context.mailbox.item.enhancedLocation.getAsync(callbackFunction);

function callbackFunction(asyncResult) {
    asyncResult.value.forEach(function (place) {
        console.log("Display name: " + place.displayName);
        console.log("Type: " + place.locationIdentifier.type);
        if (place.locationIdentifier.type === Office.MailboxEnums.LocationType.Room) {
            console.log("Email address: " + place.emailAddress);
        }
    });
}

属性

displayName

位置的显示名称。

emailAddress

与位置关联的电子邮件地址。 只有类型 Room 为的位置具有电子邮件地址。

locationIdentifier

LocationIdentifier位置的 。

属性详细信息

displayName

位置的显示名称。

displayName: string;

属性值

string

emailAddress

与位置关联的电子邮件地址。 只有类型 Room 为的位置具有电子邮件地址。

emailAddress: string;

属性值

string

locationIdentifier

LocationIdentifier位置的 。

locationIdentifier: LocationIdentifier;

属性值