バージョン

PerformKeyAction メソッド (UltraMonthViewMulti)

特定のキー アクションを実行します。
シンタックス
'宣言
 
Public Overridable Function PerformKeyAction( _
   ByVal actionCode As MonthViewMultiAction, _
   ByVal shift As Boolean, _
   ByVal control As Boolean _
) As Boolean
public virtual bool PerformKeyAction( 
   MonthViewMultiAction actionCode,
   bool shift,
   bool control
)

パラメータ

actionCode
実行されるユーザー アクションを決定する列挙体の値。
shift
ブール値は、シフト キーが押されたように動作が実行されるかどうかを指定します。これは主に、シフト キーを押しながらグリッドの行の範囲を選択する時に既存の選択が拡張される場合に選択が関与および決定される動作に影響を与えます。
control
ブール値は、コントロール キーが押されたように動作が実行されるかどうかを指定します。これは主に、コントロール キーを押しながらグリッドの行を選択する時に既存の選択が維持される場合に選択が関与および決定される動作に影響を与えます。

戻り値の型

アクションが問題なく完了した場合は True。アクションが失敗した場合は False。
使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinSchedule.MonthViewMulti

    Private Sub ActivateFirstDayInPreviousMonth()

        '	Use the PerformAction method to scoll the control one month
        '	into the past
        Me.ultraMonthViewMulti1.PerformAction(MonthViewMultiAction.ScrollPrevious)

        '	Use the PerformKeyAction method to activate the first day in the month
        '	Note that we use PerformKeyAction because this action requires that the
        '	Ctrl key be pressed, and the PerformAction method does not support
        '	simulated pressing of special keys.
        Me.ultraMonthViewMulti1.PerformKeyAction(MonthViewMultiAction.FirstDayOfMonth, False, True)

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using Infragistics.Win.UltraWinSchedule.MonthViewMulti;

		private void ActivateFirstDayInPreviousMonth()
		{

			//	Use the PerformAction method to scoll the control one month
			//	into the past
			this.ultraMonthViewMulti1.PerformAction( MonthViewMultiAction.ScrollPrevious );

			//	Use the PerformKeyAction method to activate the first day in the month
			//	Note that we use PerformKeyAction because this action requires that the
			//	Ctrl key be pressed, and the PerformAction method does not support
			//	simulated pressing of special keys.
			this.ultraMonthViewMulti1.PerformKeyAction( MonthViewMultiAction.FirstDayOfMonth, false, true );

		}
参照