NamedRange.Width 属性
获取 NamedRange 控件的宽度(以磅为单位)。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)
语法
声明
ReadOnly Property Width As Object
Object Width { get; }
属性值
类型:System.Object
NamedRange 控件的宽度(以磅为单位)。
示例
下面的代码示例创建一个 NamedRange,然后使用 Width 和 Height 属性显示 NamedRange 的宽度和高度。
此示例针对的是文档级自定义项。
Private heightWidthRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub DisplayHeightAndWidth()
heightWidthRange = Me.Controls.AddNamedRange( _
Me.Range("B4"), "heightWidthRange")
heightWidthRange.Select()
MessageBox.Show("The NamedRange control is " & _
Me.heightWidthRange.Width & " points wide and " & _
Me.heightWidthRange.Height & " points high.")
End Sub
Microsoft.Office.Tools.Excel.NamedRange heightWidthRange;
private void DisplayHeightAndWidth()
{
heightWidthRange = this.Controls.AddNamedRange(
this.Range["B4"], "heightWidthRange");
heightWidthRange.Select();
MessageBox.Show("The NamedRange control is " +
this.heightWidthRange.Width + " points wide and " +
this.heightWidthRange.Height + " points high.");
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。