バージョン

AppointmentResized イベント

appointment はエンドユーザーによってサイズ変更されたときに発生されたイベント。
シンタックス
'宣言
 
Public Event AppointmentResized As AppointmentResizedHandler
public event AppointmentResizedHandler AppointmentResized
イベント データ

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

プロパティ解説
Appointment サイズ変更操作が実行された Appointment を返します。
EnterEditMode 編集モード セッションがイベント発生直後に appointment 上で始まるかどうかを取得または設定します。
ResizeType 関連付けられた予定の StartDateTime または EndDateTime がサイズ変更操作によって変更されたかどうかを返します。
解説

AppointmentResized イベントは、ユーザーが予定サイズ変更操作を完了したことをリスナーに通知します。また、操作はキャンセルされませんでした。EnterEditMode プロパティは、サイズ変更された予定がサイズ操作が完了された時に自動的に編集モードに入るかどうかを決定するために使用されます。

使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports System.Diagnostics

    AddHandler Me.dayView.AppointmentResized, AddressOf OnAppointmentsResized

    Private Sub OnAppointmentsResized(ByVal sender As Object, ByVal e As AppointmentResizedEventArgs)

        '  MS Outlook enters edit mode on an appointment after a resize
        '  operation is completed; set the 'EnterEditMode' property of the
        '  event arguments to true to emulate this behavior.
        e.EnterEditMode = True
    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using System.Diagnostics;

this.dayView.AppointmentResized += new AppointmentResizedHandler(OnAppointmentResized);

private void OnAppointmentResized(object sender, AppointmentResizedEventArgs e)
{
    //  MS Outlook enters edit mode on an appointment after a resize
    //  operation is completed; set the 'EnterEditMode' property of the
    //  event arguments to true to emulate this behavior.
    e.EnterEditMode = true;
}
参照