共用方式為


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
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 安全性

請參閱

參考

WorksheetBase 類別

Microsoft.Office.Tools.Excel 命名空間