DataGridViewRow.Height 属性

定义

获取或设置行的当前高度。

public:
 property int Height { int get(); void set(int value); };
public int Height { get; set; }
member this.Height : int with get, set
Public Property Height As Integer

属性值

Int32

行的高度(以像素为单位)。 默认值是默认字体的高度加上 9 像素。

例外

DataGridView 控件中的共享行设置了此属性。

示例

下面的代码示例使用 Height 属性设置第一行的高度。 此代码示例是 How to: 操作 Windows 窗体 DataGridView 控件中的行的大型代码示例的一部分。

// Set height.
void Button5_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   DataGridViewRow^ row = dataGridView->Rows[ 0 ];
   row->Height = 15;
}
// Set height.
private void Button5_Click(object sender, System.EventArgs e)
{

    DataGridViewRow row = dataGridView.Rows[0];
    row.Height = 15;
}
' Set height.
Private Sub Button5_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Button5.Click

    Dim row As DataGridViewRow = dataGridView.Rows(0)
    row.Height = 15
End Sub

注解

若要设置行的最小高度,请使用 MinimumHeight 该属性。

适用于

另请参阅