مشاركة عبر


WorksheetBase.Index الخاصية

يحصل على رقم الفهرس لورقة العمل ضمن مجموعة من أوراق العمل.

مساحة الاسم:  Microsoft.Office.Tools.Excel
التجميع:  Microsoft.Office.Tools.Excel.v4.0.Utilities (في Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

بناء الجملة

'إقرار
Public ReadOnly Property Index As Integer
    Get
public int Index { get; }

قيمة الخاصية

النوع: System.Int32
فهرس الأرقام في ورقة العمل ضمن المجموعة من أوراق العمل.

أمثلة

ما يلي تعليمات برمجية يستخدم المثال Indexوضع خاصية لعرض رقم الفهرس لورقة عمل الحالي قبل وبعد نقل ورقة عمل إلى آخر في مصنف باستخدام Moveالأسلوب.

Th هو المثال هو لتخصيص المستوى مستند.

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());
}

أمن NET Framework.

راجع أيضًَا

المرجع

WorksheetBase الفئة

WorksheetBase الأعضاء

Microsoft.Office.Tools.Excel مساحة الاسم