'宣言 Public Enum UltraDayViewAction Inherits System.Enum
public enum UltraDayViewAction : System.Enum
メンバ | 解説 |
---|---|
CreateAppointmentAndEnterEditMode | 選択されているタイムスロットに基づいてAppointmentを作成し、編集モードに入ります。 |
DeleteSelectedAppointments | 選択されている予定の削除。 |
EndCurrentEditDiscardChanges | 現在の予定の編集を終了し、予定の件名に対して行った変更を破棄。 |
EndCurrentEditSaveChanges | 現在の予定の編集を終了し、予定の件名に対して行った変更を保存。 |
EnterEditMode | 選択されている最初の予定を編集モードにします。 |
FirstWorkingHourTimeSlot | 最初の稼働時間のタイムスロット。 |
LastWorkingHourTimeSlot | 最後の稼働時間のタイムスロット。 |
NextColumn | 次の列を返します。 |
NextTimeSlot | 次のタイムスロット。 |
NextTimeSlotForLastSelectedAppointment | 選択されている最後の予定を含むTimeSlotの、1つ後のTimeSlotを選択します。 |
NextVisibleDay | 次の表示日。 |
OpenAppointmentDialog | 予定編集ダイアログを開きます。 |
PageDown | ページダウン |
PageUp | ページアップ |
PreviousColumn | 前の列を返します。 |
PreviousTimeSlot | 前のタイムスロット。 |
PreviousTimeSlotForFirstSelectedAppointment | 選択されている最初の予定を含むTimeSlotの、1つ前のTimeSlotを選択します。 |
PreviousVisibleDay | 前の表示日。 |
SameTimeSlotNextColumn | 同じタイムスロットの次の列を返します。 |
SameTimeSlotNextDay | 同じタイムスロットの次の日。 |
SameTimeSlotPreviousColumn | 同じタイムスロットの前の列を返します。 |
SameTimeSlotPreviousDay | 同じタイムスロットの前の日。 |
SameTimeSlotsNextDayForSelectedAppointments | 現在選択されている予定に基づいて、次の表示日のTimeSlot範囲を選択します。 |
SameTimeSlotsPreviousDayForSelectedAppointments | 現在選択されている予定に基づいて、前の表示日のTimeSlot範囲を選択します。 |
ScrollAllDayEventAreaDown | 終日イベント領域を一行スクロール ダウンします。 |
ScrollAllDayEventAreaUp | 終日イベント領域を一行スクロール アップします。 |
SelectNextActivity | タブ オーダーによって次の予定を選択します。 |
SelectPreviousActivity | タブ オーダーによって前の予定を選択します。 |
Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click ' Get the current state of the UltraDayView control Dim state As UltraDayViewState = Me.UltraDayView1.CurrentState ' Check the state bit flags to see if a time slot is selected If (state And UltraDayViewState.TimeSlotSelected) <> 0 Then ' Since a time slot is selected, call PerformAction ' to select the same time slot in the next day. Me.UltraDayView1.PerformAction(UltraDayViewAction.SameTimeSlotNextDay) End If End Sub
using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; private void button4_Click(object sender, System.EventArgs e) { // Get the current state of the UltraDayView control UltraDayViewState state = this.ultraDayView1.CurrentState; // Check the state bit flags to see if a time slot is selected if ((state & UltraDayViewState.TimeSlotSelected) != 0) { // Since a time slot is selected, call PerformAction // to select the same time slot in the next day. this.ultraDayView1.PerformAction(UltraDayViewAction.SameTimeSlotNextDay); } }