バージョン

ResizeMode プロパティ

コントロール上での月のサイズ変更方法と表示方法を決定します。
シンタックス
'宣言
 
Public Property ResizeMode As ResizeMode
public ResizeMode ResizeMode {get; set;}
解説

ResizeMode プロパティは、コントロール サイズが UltraMonthViewMultiBase.MonthDimensions に基づいて決定されるか、コントロールの現在のサイズに基づいて可能な限り多くの月を表示するかを決定します。SizeToCalendar に設定されると、コントロールは UltraMonthViewMultiBase.MonthDimensions によって示された月を表示するためにサイズを調整します。BaseOnControlSize に設定されると、コントロールはコントロールの現在のサイズに基づいて可能な限り多くの月を表示します。CalendarAlign プロパティは、月をコントロール内にどのように配置するのかを決定します。

使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinSchedule.MonthViewMulti

    Private Sub OptimizeDisplay()

        '	Set the ResizeMode property to BaseOnControlSize, so the control
        '	displays as many months as can be fit into the available space.
        Me.ultraMonthViewMulti1.ResizeMode = ResizeMode.BaseOnControlSize

        '	Align the calendar(s) with the top-left edge of the control
        Me.ultraMonthViewMulti1.CalendarAlign = ContentAlignment.TopLeft

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

		private void OptimizeDisplay()
		{

			//	Set the ResizeMode property to BaseOnControlSize, so the control
			//	displays as many months as can be fit into the available space.
			this.ultraMonthViewMulti1.ResizeMode = ResizeMode.BaseOnControlSize;

			//	Align the calendar(s) with the top-left edge of the control
			this.ultraMonthViewMulti1.CalendarAlign = ContentAlignment.TopLeft;

		}
参照