WorksheetBase.StandardWidth 属性

获取或设置工作表中所有列的标准(默认)宽度。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)

语法

声明
Public Property StandardWidth As Double
    Get
    Set
public double StandardWidth { get; set; }

属性值

类型:System.Double
工作表中所有列的标准(默认)宽度。

备注

在“常规”样式下,一个列宽单位相当于一个字符的宽度。 对于非等宽字体,使用字符宽度 0(零)。

示例

下面的代码示例使用 StandardWidth 属性显示当前工作表中所有列的默认宽度。

此示例针对的是文档级自定义项。

Private Sub DisplayStandardWidth()
    MsgBox("The default column width is " & _
        Me.StandardWidth.ToString() & " characters.")
End Sub
private void DisplayStandardWidth()
{
    MessageBox.Show("The default column width is " +
        this.StandardWidth.ToString() + " characters.");
}

.NET Framework 安全性

请参见

参考

WorksheetBase 类

Microsoft.Office.Tools.Excel 命名空间