Condividi tramite


Proprietà WorksheetBase.Next

Ottiene un oggetto Microsoft.Office.Interop.Excel.Worksheet che rappresenta il foglio successivo.

Spazio dei nomi:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Sintassi

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

Valore proprietà

Tipo: System.Object
Oggetto Microsoft.Office.Interop.Excel.Worksheet che rappresenta il foglio successivo; nullriferimento null (Nothing in Visual Basic) se il foglio di lavoro corrente è l'ultimo foglio della cartella di lavoro.

Esempi

Nell'esempio di codice riportato di seguito viene utilizzata la proprietà Next per determinare se l'oggetto WorksheetBase corrente è l'ultimo foglio della cartella di lavoro.Se l'oggetto WorksheetBase corrente non è l'ultimo foglio, verrà visualizzato il nome del foglio successivo.

Questo esempio è valido per una personalizzazione a livello di documento.

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.");
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

WorksheetBase Classe

Spazio dei nomi Microsoft.Office.Tools.Excel