Version

AfterCloseAppointmentRecurrenceDialog Event

Fired after the RecurrenceDialog has been closed.
Syntax
'Declaration
 
Public Event AfterCloseAppointmentRecurrenceDialog As AppointmentEventHandler
public event AppointmentEventHandler AfterCloseAppointmentRecurrenceDialog
Event Data

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.

PropertyDescription
Appointment Appointment object associated with the event. This property is read-only.
Example
The following example demonstrates how to use the parameters of the 'AfterCloseAppointmentRecurrenceDialog' event.

For an overview of how to handle events in Visual Basic or Visual C#, see Event Handlers in Visual Basic and Visual C#. For specific information and code examples illustrating how to consume events in your application, see Consuming Events in the .NET Framework Developer's Guide.

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));
		}
Requirements

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

See Also