'宣言 Public Overloads Overridable Function PerformAction( _ ByVal actionCode As MonthViewMultiAction _ ) As Boolean
public virtual bool PerformAction( MonthViewMultiAction actionCode )
注: 特定のアクションは、特殊キー要件を含みます。たとえば、アクションは Ctrl キーの押下が必要となる場合があります。この要件は、関連付けられた Infragistics.Win.UltraWinSchedule.MonthViewMulti.KeyActionMapping オブジェクトの SpecialKeysRequired プロパティによって規定されています。それぞれのキーが押されない場合には、特殊キー要件を含むアクションは実行されません。これらのアクションを実行するには、コントロールの PerformKeyAction メソッドを使用します。これによって、「control」パラメーターと「shift」パラメーターを使用して、Ctrl キーと Shift キーを押す操作をシミュレートすることができます。
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 ); }