バージョン

EnterEditMode プロパティ

編集モード セッションがイベント発生直後に appointment 上で始まるかどうかを取得または設定します。
シンタックス
'宣言
 
Public Property EnterEditMode As Boolean
public bool EnterEditMode {get; set;}
使用例
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;
}
参照