Compartilhar via


Office.MailboxEnums.OWAView enum

Representa a vista atual do Outlook na Web.

Comentários

Exemplos

// 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;
}

Campos

OneColumnNarrow = "OneColumnNarrow"

Vista estreita de uma coluna. Apresentado quando a largura do ecrã é inferior a 436 píxeis. Por exemplo, o Outlook na Web utiliza esta vista em todo o ecrã de smartphones mais antigos.

OneColumn = "OneColumn"

Vista de uma coluna. Apresentado quando a largura do ecrã é maior ou igual a 436 píxeis, mas inferior a 536 píxeis. Por exemplo, o Outlook na Web utiliza esta vista em todo o ecrã de smartphones mais recentes.

TwoColumns = "TwoColumns"

Vista de duas colunas. Apresentado quando a largura do ecrã é maior ou igual a 536 píxeis, mas inferior a 780 píxeis. Por exemplo, o Outlook na Web utiliza esta vista na maioria dos tablets.

ThreeColumns = "ThreeColumns"

Vista de três colunas. Apresentado quando a largura do ecrã é maior ou igual a 780 píxeis. Por exemplo, o Outlook na Web utiliza esta vista numa janela de ecrã inteiro num computador de secretária.