WorksheetBase.Type 属性
获取工作表类型。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property Type As XlSheetType
Get
public XlSheetType Type { get; }
属性值
类型:Microsoft.Office.Interop.Excel.XlSheetType
XlSheetType 值之一。
示例
下面的代码示例使用 Type 属性显示当前工作表是工作表、对话表,还是消息框中的图表。
此示例针对的是文档级自定义项。
Private Sub ShowType()
Select Case Me.Type
Case Excel.XlSheetType.xlWorksheet
MsgBox("This is a worksheet.")
Case Excel.XlSheetType.xlDialogSheet
MsgBox("This is a dialogsheet.")
Case Excel.XlSheetType.xlChart
MsgBox("This is a chart.")
End Select
End Sub
private void ShowType()
{
switch (this.Type)
{
case Excel.XlSheetType.xlWorksheet:
MessageBox.Show("This is a worksheet.");
break;
case Excel.XlSheetType.xlDialogSheet:
MessageBox.Show("This is a dialogsheet.");
break;
case Excel.XlSheetType.xlChart:
MessageBox.Show("This is a chart.");
break;
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。