バージョン

UltraDayViewAction 列挙体

UltraDayViewに対して実行可能なアクションを列挙します。
シンタックス
'宣言
 
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);
			}

		}
参照