LockedWidth プロパティを使用してユーザーによる列のサイズ変更を無効にできます。このプロパティが True の場合であっても、列はコードでサイズ変更できます。このプロパティを True に設定すると、指定した列以外の列のサイズ変更を無効にできます。指定した列が子バンドでひとつの列と同期すると、その列もロックされます。同様に、グループの特定の列で LockedWidth プロパティを True に設定すると、ロックされた列の位置に基づき、ユーザーはグループをサイズ変更できなくなります。
このプロパティは、チャプター列で無視されます。つまり、DataType プロパティが 136 (DataTypeChapter) に設定された列です。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button119_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button119.Click Dim column As UltraGridColumn = Me.UltraGrid1.DisplayLayout.Bands(0).Columns("CustomerID") ' Set LockedWidth to true to prevent the user from resizing the column. column.LockedWidth = True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button119_Click(object sender, System.EventArgs e) { UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns["CustomerID"]; // Set LockedWidth to true to prevent the user from resizing the column. column.LockedWidth = true; }