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
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 命名空间