'宣言 Public Event AfterCloseAppointmentRecurrenceDialog As AppointmentEventHandler
public event AppointmentEventHandler AfterCloseAppointmentRecurrenceDialog
イベント ハンドラが、このイベントに関連するデータを含む、AppointmentEventArgs 型の引数を受け取りました。次の AppointmentEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Appointment | イベントに関連付けられたAppointmentオブジェクト。このプロパティは読み取り専用です。 |
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Imports System.Diagnostics Private Sub ultraCalendarInfo1_AfterCloseAppointmentRecurrenceDialog(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.AppointmentEventArgs) Handles ultraCalendarInfo1.AfterCloseAppointmentRecurrenceDialog ' The 'AfterCloseAppointmentRecurrenceDialog' is invoked ' when the recurrence dialog that was displayed from ' the UltraWinSchedule appointment dialog is closed. ' The Appointment parameter indicates which appointment ' is being affected. ' Debug.WriteLine(String.Format("The recurrence dialog for '{0}' was closed.", e.Appointment.Subject)) End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; using System.Diagnostics; private void ultraCalendarInfo1_AfterCloseAppointmentRecurrenceDialog(object sender, Infragistics.Win.UltraWinSchedule.AppointmentEventArgs e) { // The 'AfterCloseAppointmentRecurrenceDialog' is invoked // when the recurrence dialog that was displayed from // the UltraWinSchedule appointment dialog is closed. // The Appointment parameter indicates which appointment // is being affected. // Debug.WriteLine( string.Format("The recurrence dialog for '{0}' was closed.", e.Appointment.Subject)); }