Office.Diagnostics interface
Provides diagnostic information to an Outlook add-in.
Remarks
Minimum permission level: read item
Applicable Outlook mode: Compose or Read
Starting with Mailbox requirement set 1.5, you can also use the Office.context.diagnostics property to get similar information.
Examples
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/90-other-item-apis/get-diagnostic-information.yaml
// This function gets a mailbox's diagnostic information, such as Outlook client and version, and logs it to the console.
const diagnostics = Office.context.mailbox.diagnostics;
console.log(`Client application: ${diagnostics.hostName}`);
console.log(`Client version: ${diagnostics.hostVersion}`);
switch (diagnostics.OWAView) {
case undefined:
console.log("Current view (Outlook on the web only): Not applicable. An Outlook desktop client is in use.");
break;
case Office.MailboxEnums.OWAView.OneColumnNarrow:
console.log("Current view (Outlook on the web only): Viewed from an older generation mobile phone");
break;
case Office.MailboxEnums.OWAView.OneColumn:
console.log("Current view (Outlook on the web only): Viewed from a newer generation mobile phone");
break;
case Office.MailboxEnums.OWAView.TwoColumns:
console.log("Current view (Outlook on the web only): Viewed from a tablet");
break;
case Office.MailboxEnums.OWAView.ThreeColumns:
console.log("Current view (Outlook on the web only): Viewed from a desktop computer");
break;
}
Properties
host |
Gets a string that represents the type of Outlook client. The string can be one of the following values: |
host |
Gets a string that represents the version of either the Outlook client or the Exchange Server (for example, "15.0.468.0"). If the mail add-in is running in Outlook on Windows (classic), on Mac, or on mobile devices, the |
OWAView | Gets a string that represents the current view of Outlook on the web. The returned string can be one of the following values: If the application is not Outlook on the web, then accessing this property results in undefined. Outlook on the web has three views that correspond to the width of the screen and the window, and the number of columns that can be displayed:
|
Property Details
hostName
Gets a string that represents the type of Outlook client.
The string can be one of the following values: Outlook
, newOutlookWindows
, OutlookWebApp
, OutlookIOS
, or OutlookAndroid
.
hostName: string;
Property Value
string
Remarks
Minimum permission level: read item
Applicable Outlook mode: Compose or Read
Important: The Outlook
value is returned for Outlook on Windows (classic) and on Mac. newOutlookWindows
is returned for new Outlook on Windows.
hostVersion
Gets a string that represents the version of either the Outlook client or the Exchange Server (for example, "15.0.468.0").
If the mail add-in is running in Outlook on Windows (classic), on Mac, or on mobile devices, the hostVersion
property returns the version of the Outlook client. In Outlook on the web and new Outlook on Windows, the property returns the version of the Exchange Server.
hostVersion: string;
Property Value
string
Remarks
Minimum permission level: read item
Applicable Outlook mode: Compose or Read
OWAView
Gets a string that represents the current view of Outlook on the web.
The returned string can be one of the following values: OneColumn
, TwoColumns
, or ThreeColumns
.
If the application is not Outlook on the web, then accessing this property results in undefined.
Outlook on the web has three views that correspond to the width of the screen and the window, and the number of columns that can be displayed:
OneColumn
, which is displayed when the screen is narrow. Outlook on the web uses this single-column layout on the entire screen of a smartphone.TwoColumns
, which is displayed when the screen is wider. Outlook on the web uses this view on most tablets.ThreeColumns
, which is displayed when the screen is wide. For example, Outlook on the web uses this view in a full screen window on a desktop computer.
OWAView: MailboxEnums.OWAView | "OneColumn" | "TwoColumns" | "ThreeColumns";
Property Value
Office.MailboxEnums.OWAView | "OneColumn" | "TwoColumns" | "ThreeColumns"
Remarks
Minimum permission level: read item
Applicable Outlook mode: Compose or Read
Office Add-ins