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