バージョン

Expandable プロパティ

バンドが展開可能かどうかを設定します。
シンタックス
'宣言
 
Public Property Expandable As Boolean
public bool Expandable {get; set;}
解説

Expandable プロパティは、バンド内の行を展開可能にするかどうかを決定します。False に設定されている場合、展開インジケーター(プラスまたはマイナス)が非アクティブになります。

ExpansionIndicator プロパティを使用すると、展開インジケーターを非表示にできます。

使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button143_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button143.Click

      Me.UltraGrid1.DisplayLayout.Bands(1).Expandable = False

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void button143_Click(object sender, System.EventArgs e)
{

	this.ultraGrid1.DisplayLayout.Bands[1].Expandable = false;

}
参照