Office.MailboxEnums.AppointmentSensitivityType enum
Gibt die Vertraulichkeitsstufe eines Termins an.
Hinweise
Anwendbarer Outlook-Modus: Verfassen oder Lesen
Beispiele
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/90-other-item-apis/get-set-sensitivity-level.yaml
Office.context.mailbox.item.sensitivity.setAsync(
Office.MailboxEnums.AppointmentSensitivityType.Private,
function callback(asyncResult) {
if (asyncResult.status === Office.AsyncResultStatus.Failed) {
console.log("Failed to set appointment sensitivity: " + JSON.stringify(asyncResult.error));
} else {
console.log("Successfully set appointment sensitivity.");
}
}
);
Felder
Normal = "normal" | Der Artikel bedarf keiner besonderen Behandlung. |
Personal = "personal" | Behandeln Sie das Element als persönlich. Wichtig: Die Persönliche Vertraulichkeitsstufe wird nur in Outlook unter Windows unterstützt. |
Private = "private" | Behandeln Sie das Element als privat. |
Confidential = "confidential" | Behandeln Sie das Element als vertraulich. Wichtig: Die Vertraulichkeitsstufe Vertraulich wird nur in Outlook unter Windows unterstützt. |
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