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; }