次の方法で共有


Office.LocationDetails interface

場所を表します。 読み取り専用です。

注釈

[ API セット: メールボックス 1.8 ]

最小アクセス許可レベル: 読み取り項目

適用できる Outlook モード: Composeまたは読み取り

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;

プロパティ値