WorksheetBase.Next-Eigenschaft

Ruft ein Microsoft.Office.Interop.Excel.Worksheet ab, das das nächste Blatt darstellt.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Syntax

'Declaration
Public ReadOnly Property Next As Object
public Object Next { get; }

Eigenschaftswert

Typ: System.Object
Ein Microsoft.Office.Interop.Excel.Worksheet, das das nächste Blatt darstellt; nullein Nullverweis (Nothing in Visual Basic), wenn das aktuelle Arbeitsblatt das letzte Blatt in der Arbeitsmappe ist.

Beispiele

Im folgenden Codebeispiel wird die Next-Eigenschaft verwendet, um festzustellen, ob das aktuelle WorksheetBase das letzte Blatt in der Arbeitsmappe ist.Wenn das aktuelle WorksheetBase nicht das letzte Blatt ist, wird der Name des nächsten Blatts angezeigt.

Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.

Private Sub DisplayNextWorksheet()
    If Not (Me.Next Is Nothing) Then
        Dim nextSheet As Excel.Worksheet = _
            CType(Me.Next, Excel.Worksheet)
        MsgBox("The next worksheet is " & nextSheet.Name)
    Else
        MsgBox("This worksheet is the last worksheet.")
    End If
End Sub
private void DisplayNextWorksheet()
{
    if (this.Next != null)
    {
        Excel.Worksheet nextSheet = (Excel.Worksheet)this.Next;
        MessageBox.Show("The next worksheet is " + nextSheet.Name);
    }
    else
    {
        MessageBox.Show("This worksheet is the last worksheet.");
    }
}

.NET Framework-Sicherheit

Siehe auch

Referenz

WorksheetBase Klasse

Microsoft.Office.Tools.Excel-Namespace