共用方式為


WorksheetBase.StandardHeight 屬性

取得工作表中所有列的標準 (預設) 高度 (以點為單位)。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)

語法

'宣告
Public ReadOnly Property StandardHeight As Double
    Get
public double StandardHeight { get; }

屬性值

型別:System.Double
工作表中所有列的標準 (預設) 高度 (以點為單位)。

範例

下列程式碼範例會使用 StandardHeight 屬性,顯示目前工作表中所有列的預設高度。

這是示範文件層級自訂的範例。

Private Sub DisplayStandardHeight()
    MsgBox("The default row height is " & _
        Me.StandardHeight.ToString() & " points.")
End Sub
private void DisplayStandardHeight()
{
    MessageBox.Show("The default row height is " +
        this.StandardHeight.ToString() + " points.");
}

.NET Framework 安全性

請參閱

參考

WorksheetBase 類別

Microsoft.Office.Tools.Excel 命名空間