バージョン

FirstMonth プロパティ

コントロールによって表示される最初の Month 表示を設定します。
シンタックス
'宣言
 
Public Property FirstMonth As Month
public Month FirstMonth {get; set;}
解説

コントロールがそのサイズに基づいて月を表示するように設定される場合、コントロールが月を表示しないように設定することができます。したがって、どの月が表示されるのか何カ月表示されるのかを確認するために VisibleMonths コレクションをチェックする必要があります。

使用例
Private Sub SetFirstMonthToCurrentMonth()

    '	Get the current month
    Dim month As Infragistics.Win.UltraWinSchedule.Month
    month = Me.ultraMonthViewMulti1.CalendarInfo.GetMonth(DateTime.Today)

    '	Set the  control's FirstMonth property to the current month
    Me.ultraMonthViewMulti1.FirstMonth = month

End Sub
private void SetFirstMonthToCurrentMonth()
{

	//	Get the current month
	Infragistics.Win.UltraWinSchedule.Month month;
	month = this.ultraMonthViewMulti1.CalendarInfo.GetMonth( DateTime.Today );

	//	Set the  control's FirstMonth property to the current month
	this.ultraMonthViewMulti1.FirstMonth = month;

}
参照