Office.MailboxEnums.AppointmentSensitivityType enum
予定の 秘密度レベル を指定します。
注釈
適用できる Outlook モード: Composeまたは読み取り
例
// 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.");
}
}
);
フィールド
Normal = "normal" | 特別な扱いは不要です。 |
Personal = "personal" | アイテムを個人用として扱います。 重要: 個人用の秘密度レベルは、Outlook on Windows でのみサポートされます。 |
Private = "private" | アイテムをプライベートとして扱います。 |
Confidential = "confidential" | アイテムを機密として扱います。 重要: 機密機密レベルは、Outlook on Windows でのみサポートされます。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins