'Declaration Public Event AfterCloseAppointmentRecurrenceDialog As AppointmentEventHandler
public event AppointmentEventHandler AfterCloseAppointmentRecurrenceDialog
The event handler receives an argument of type AppointmentEventArgs containing data related to this event. The following AppointmentEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Appointment | Appointment object associated with the event. This property is read-only. |
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)); }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2