'宣言 Public Property FixedHeight As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean FixedHeight {get; set;}
このプロパティは、RowSizing プロパティがユーザーに行のサイズ変更を許可するかどうかに関係なく、特定の行はサイズ変更出来ないことを示すために使用されます。
このプロパティが特定行で 1 (FixedHeightTrue) に設定されると、RowSizing プロパティが 3 に設定されている場合、行のサイズは他の行のサイズに影響されるので、その行を間接的にサイズ変更できます。
このプロパティは、ユーザーが行のサイズ変更をできるかどうかに限って影響します。このプロパティの値に関係なく、Height プロパティの設定によって、行をプログラムでサイズ設定できます。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click ' Set the height of the row to 100 pixels. Me.UltraGrid1.Rows(0).Height = 100 ' Disallow the user to change the height of the first row. Me.UltraGrid1.Rows(0).FixedHeight = DefaultableBoolean.True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button1_Click(object sender, System.EventArgs e) { // Set the height of the row to 100 pixels. this.ultraGrid1.Rows[0].Height = 100; // Disallow the user to change the height of the first row. this.ultraGrid1.Rows[0].FixedHeight = DefaultableBoolean.True; }