Udostępnij za pośrednictwem


Właściwość WorksheetBase.Index —

Pobiera numer indeksu arkusza w zbiorze arkuszy.

Przestrzeń nazw:  Microsoft.Office.Tools.Excel
Zestaw:  Microsoft.Office.Tools.Excel.v4.0.Utilities (w Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

Składnia

'Deklaracja
Public ReadOnly Property Index As Integer
public int Index { get; }

Wartość właściwości

Typ: System.Int32
Numer indeksu arkusza w zbiorze arkuszy.

Przykłady

Następujący kod w przykładzie wykorzystano Index właściwość, aby wyświetlić numer indeksu bieżącego arkusza przed i po przeniesieniu do ostatniego arkusza umieść w skoroszycie za pomocą Move metody.

Ten przykład dotyczy dostosowywania na poziomie dokumentu.

Private Sub DisplayIndex()
    MsgBox("Before moving, this worksheet is at tab number " & _
        Me.Index.ToString())

    ' Move the worksheet to the last position in the workbook.
    Me.Move(After:=Globals.ThisWorkbook.Worksheets( _
        Globals.ThisWorkbook.Worksheets.Count))

    MsgBox("After moving, this worksheet is at tab number " & _
        Me.Index.ToString())
End Sub
private void DisplayIndex()
{
    MessageBox.Show("Before moving, this worksheet is at tab number " +
        this.Index.ToString());

    // Move the worksheet to the last position in the workbook.
    this.Move(missing, 
        Globals.ThisWorkbook.Worksheets[Globals.ThisWorkbook.Worksheets.Count]);

    MessageBox.Show("After moving, this worksheet is at tab number " +
        this.Index.ToString());
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

WorksheetBase Klasa

Przestrzeń nazw Microsoft.Office.Tools.Excel