Office.AppointmentTimeChangedEventArgs interface
イベントを発生させた予定の現在の日付と時刻を提供します Office.EventType.AppointmentTimeChanged
。
注釈
例
// Adds an event handler for the AppointmentTimeChanged event.
Office.onReady(() => {
document.addEventListener('DOMContentLoaded', () => {
// Get a reference to the mailbox and use it to add an event handler.
const mailbox = Office.context.mailbox;
mailbox.addHandlerAsync(Office.EventType.AppointmentTimeChanged, appointmentTimeChangedHandler, (result) => {
if (result.status === Office.AsyncResultStatus.Failed) {
console.error(`Failed to add event handler: ${asyncResult.error.message}`);
return;
}
console.log("Event handler added successfully.");
});
});
});
// Handles the AppointmentTimeChanged event.
function appointmentTimeChangedHandler(event) {
console.log(`Event: ${event.type}`);
console.log(`Start time: ${event.start}`);
console.log(`End time: ${event.end}`);
}
プロパティ
end | 予定の終了日時を取得します。 |
start | 予定の開始日と時刻を取得します。 |
type | イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。 |
プロパティの詳細
end
start
type
イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。
type: "olkAppointmentTimeChanged";
プロパティ値
"olkAppointmentTimeChanged"
注釈
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins