Scheduler for WinForms
AppointmentCustomAction イベント (C1Schedule)
使用例 

C1.Win.Schedule.6 アセンブリ > C1.Win.Schedule 名前空間 > C1Schedule クラス : AppointmentCustomAction イベント
C1.C1Schedule.Appointment オブジェクトのカスタム処理が実行される直前に発生します。
シンタックス
'宣言
 
Public Event AppointmentCustomAction As CancelAppointmentEventHandler
public event CancelAppointmentEventHandler AppointmentCustomAction
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、CancelAppointmentEventArgs 型の引数を受け取りました。次の CancelAppointmentEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets the Appointment object which the event was raised for.  
System.ComponentModel.CancelEventArgsから継承されます。
解説
デフォルトの処理をキャンセルするには、CancelAppointmentEventArgs.Cancel プロパティを true に設定します。
使用例
private void c1Schedule1_AppointmentAdded(object sender, AppointmentEventArgs e)
{
	// 新しい処理を作成します
	Action action = new Action();
	action.Command = "http://www.grapecity.com";
	// 予定の処理を設定します
	e.Appointment.Action = action;
}
参照