バージョン

MinRowHeight プロパティ

行の最小の高さを指定します。デフォルトでは、行の高さは、セルのフォントサイズとセルに含まれるドロップダウンボタンによって制限されます。このプロパティを使用すると、このような制限を取り除き、行の高さを、自動的に計算される最小値より小さい値に設定できます。デフォルト値は -1 です。行の最小の高さは 1 以上にする必要があるため、このプロパティを 0 に設定すると例外がスローされます。
シンタックス
'宣言
 
Public Property MinRowHeight As Integer
public int MinRowHeight {get; set;}
解説

MinRowHeight は行の最小の高さを指定します。デフォルトでは、行の高さは、セルのフォントサイズとセルに含まれるドロップダウンボタンによって制限されます。このプロパティを使用すると、このような制限を取り除き、行の高さを、自動的に計算される最小値より小さい値に設定できます。UltraGridはこの値を行の最小の高さとして使用します。行の最小の高さは 1 以上にする必要があるため、このプロパティを 0 に設定すると例外がスローされます。

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


    Private Sub UltraGrid1_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraGrid1.InitializeLayout
        ' By default the UltraGrid calculates the minimum height for the rows in a band
        ' and restricts the row heights by it. To override this minimum height set
        ' the MinRowHeight.
        Me.UltraGrid1.DisplayLayout.Bands(0).Override.MinRowHeight = 1
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;


		private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
		{
			// By default the UltraGrid calculates the minimum height for the rows in a band
			// and restricts the row heights by it. To override this minimum height set
			// the MinRowHeight.
			this.ultraGrid1.DisplayLayout.Bands[0].Override.MinRowHeight = 1;
		}
参照