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

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

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

プロパティ解説
イベントを発生させた Appointmentオブジェクトを取得します。  
System.ComponentModel.CancelEventArgsから継承されます。
解説
デフォルトの処理をキャンセルする場合は、CancelAppointmentEventArgs.Cancel プロパティに true を設定してください。
使用例
private void c1Schedule1_AppointmentAdded(object sender, AppointmentEventArgs e)
{
  // 新規アクションを追加します
  Action action = new Action();
  action.Command = "http://www.grapecity.com/japan/";
  
  // 予定のアクションを追加します
  e.Appointment.Action = action;
}
参照