Office.MailboxEnums.InfobarType enum
Typ der Benachrichtigung, die von Office.EventType.InfobarClicked zulässig ist.
Hinweise
Beispiele
/*
* This snippet activates when a notification message is dismissed from an Outlook message or appointment.
* The event handler logs the custom action and notification type to the console.
*/
Office.context.mailbox.item.addHandlerAsync(Office.EventType.InfobarClicked, eventHandler, callback);
function eventHandler(event) {
const infobarDetails = event.infobarDetails;
// Log the custom action type.
console.log(`Custom action type: ${infobarDetails.actionType}`);
// Log the notification type.
switch (infobarDetails.infobarType) {
case Office.MailboxEnums.InfobarType.Error:
console.log("Notification type: Error message");
break;
case Office.MailboxEnums.InfobarType.Informational:
console.log("Notification type: Informational message");
break;
case Office.MailboxEnums.InfobarType.Insight:
console.log("Notification type: Informational message with available actions from the task pane");
break;
case Office.MailboxEnums.InfobarType.ProgressIndicator:
console.log("Notification type: Progress indicator");
break;
}
}
Felder
Informational = 0 | Die Benachrichtigung zeigt eine Informationsmeldung an. |
ProgressIndicator = 1 | In der Benachrichtigung wird eine Statusanzeige angezeigt. |
Error = 2 | In der Benachrichtigung wird eine Fehlermeldung angezeigt. |
Insight = 3 | Die Benachrichtigung zeigt eine Informationsmeldung mit Aktionen an. |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Add-ins