Propriedade WorksheetBase.Previous

Obtém Microsoft.Office.Interop.Excel.Worksheet que representa a folha anterior.

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

Sintaxe

'Declaração
Public ReadOnly Property Previous As Object
public Object Previous { get; }

Valor de propriedade

Tipo: System.Object
Microsoft.Office.Interop.Excel.Worksheet que representa a folha anterior; nulluma referência nula (Nothing no Visual Basic) se a planilha atual é a primeira folha na pasta de trabalho.

Exemplos

O exemplo de código a seguir usa a propriedade de Previous para determinar se WorksheetBase atual é a primeira folha na pasta de trabalho.Se WorksheetBase atual não é a primeira folha, o nome da planilha anterior é exibido.

Este exemplo é para uma personalização da nível.

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

Segurança do .NET Framework

Consulte também

Referência

WorksheetBase Classe

Namespace Microsoft.Office.Tools.Excel