バージョン

PreferredInViewColumnCount プロパティ

最初に表示される列の数を取得または設定します。
シンタックス
'宣言
 
Public Property PreferredInViewColumnCount As Integer
public int PreferredInViewColumnCount {get; set;}
解説

AllowColumnResizing が True の場合にユーザーがサイズ変更操作を行うと、それ以降この設定は無視されます。

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

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        '	Set the PreferredInViewColumnCount and PreferredInViewGroupCount
        '	both to 1 so that only one column is displayed at a time.
        Me.UltraDayView1.PreferredInViewColumnCount = 1
        Me.UltraDayView1.PreferredInViewGroupCount = 1

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using System.Diagnostics;

		private void button1_Click(object sender, System.EventArgs e)
		{
			//	Set the PreferredInViewColumnCount and PreferredInViewGroupCount
			//	both to 1 so that only one column is displayed at a time.
			this.ultraDayView1.PreferredInViewColumnCount = 1;
			this.ultraDayView1.PreferredInViewGroupCount = 1;
		}
参照