バージョン

FixedHeight プロパティ

ユーザーによる行のサイズ設定が可能かどうかを返すか、設定します。このプロパティは設計時には使用できません。
シンタックス
'宣言
 
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;
		}
参照