バージョン

AfterCloseAppointmentRecurrenceDialog イベント

RecurrenceDialog が閉じた後に発生します。
シンタックス
'宣言
 
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));
		}
参照