WorksheetBase.Previous 属性
获取表示上一个表的 Microsoft.Office.Interop.Excel.Worksheet。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property Previous As Object
Get
public Object Previous { get; }
属性值
类型:System.Object
表示上一个表的 Microsoft.Office.Interop.Excel.Worksheet;如果当前工作表是工作簿中的第一个表,则为 nullnull 引用(在 Visual Basic 中为 Nothing)。
示例
下面的代码示例使用 Previous 属性确定当前 WorksheetBase 是否是工作簿中的第一个表。 如果当前 WorksheetBase 不是第一个表,则显示上一个表的名称。
此示例针对的是文档级自定义项。
Private Sub DisplayPrevious()
If Not (Me.Previous Is Nothing) Then
Dim sheet As Excel.Worksheet = _
CType(Me.Previous, Excel.Worksheet)
MsgBox("The previous worksheet is " & sheet.Name)
Else
MsgBox("The current worksheet is the first worksheet.")
End If
End Sub
private void DisplayPrevious()
{
if (this.Previous != null)
{
Excel.Worksheet sheet = (Excel.Worksheet)this.Previous;
MessageBox.Show("The previous worksheet is " + sheet.Name);
}
else
{
MessageBox.Show("The current worksheet is the first worksheet.");
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。