DataGridViewRow.MinimumHeight 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定資料列的最低高度。
public:
property int MinimumHeight { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int MinimumHeight { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.MinimumHeight : int with get, set
Public Property MinimumHeight As Integer
屬性值
以圖元為單位的最小資料列高度,範圍從 2 到 Int32.MaxValue。 預設值為 3。
- 屬性
例外狀況
在設定這個屬性時,資料列位於 DataGridView 控制項中而且是一個共用資料列。
設定這個屬性時的指定值小於 2。
範例
下列程式碼範例會 MinimumHeight 使用 屬性來設定第二個數據列的最小高度。 此程式碼範例是How to: Manipulate Rows in the Windows Forms DataGridView Control中提供的較大程式碼範例的一部分。
// Set minimum height.
void Button4_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
int secondRow = 1;
DataGridViewRow^ row = dataGridView->Rows[ secondRow ];
row->MinimumHeight = 40;
}
// Set minimum height.
private void Button4_Click(object sender, System.EventArgs e)
{
int secondRow = 1;
DataGridViewRow row = dataGridView.Rows[secondRow];
row.MinimumHeight = 40;
}
' Set minimum height.
Private Sub Button4_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button4.Click
Dim secondRow As Integer = 1
Dim row As DataGridViewRow = dataGridView.Rows(secondRow)
row.MinimumHeight = 40
End Sub
備註
屬性 MinimumHeight 藉由設定使用者可透過使用者介面 (UI) 調整資料列高度的大小限制,來維護資料列的顯示。