Office.EnhancedLocationsChangedEventArgs interface
イベントが発生したときに、現在の拡張された場所を Office.EventType.EnhancedLocationsChanged
提供します。
注釈
例
// Adds an event handler for the EnhancedLocationsChanged event.
Office.onReady(() => {
document.addEventListener('DOMContentLoaded', () => {
// Get a reference to the mailbox and use it to add an event handler.
const mailbox = Office.context.mailbox;
mailbox.addHandlerAsync(Office.EventType.EnhancedLocationsChanged, enhancedLocationsChangedHandler, (result) => {
if (result.status === Office.AsyncResultStatus.Failed) {
console.error(`Failed to add event handler: ${asyncResult.error.message}`);
return;
}
console.log("Event handler added successfully.");
});
});
});
// Handles the EnhancedLocationsChanged event.
function enhancedLocationsChangedHandler(event) {
console.log(`Event: ${event.type}`);
const enhancedLocations = event.enhancedLocations;
enhancedLocations.forEach((location) => {
console.log(`Display name: ${location.displayName}`);
const locationType = location.locationIdentifier.type;
console.log(`Type: ${locationType}`);
if (locationType === Office.MailboxEnums.LocationType.Room) {
console.log(`Email address: ${location.emailAddress}`);
}
});
}
プロパティ
enhanced |
拡張された場所のセットを取得します。 |
type | イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。 |
プロパティの詳細
enhancedLocations
拡張された場所のセットを取得します。
enhancedLocations: LocationDetails[];
プロパティ値
注釈
type
イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。
type: "olkEnhancedLocationsChanged";
プロパティ値
"olkEnhancedLocationsChanged"
注釈
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins