Office.InfobarDetails interface
Proporciona detalles adicionales sobre el mensaje de notificación que generó el Office.EventType.InfobarClicked
evento.
Comentarios
[ Conjunto de API: Buzón 1.10 ]
Ejemplos
/*
* 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;
}
}
Propiedades
action |
Tipo de acción. Actualmente, "Descartar" es la única acción admitida. |
infobar |
El tipo de notificación. |
Detalles de las propiedades
actionType
Tipo de acción. Actualmente, "Descartar" es la única acción admitida.
actionType: MailboxEnums.InfobarActionType;
Valor de propiedad
Comentarios
infobarType
El tipo de notificación.
infobarType: MailboxEnums.InfobarType;
Valor de propiedad
Comentarios
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.