Bagikan melalui


WorksheetBase.Move(Object, Object) Metode

Definisi

Memindahkan lembar kerja ke lokasi lain dalam buku kerja.

public void Move (object before, object after);
member this.Move : obj * obj -> unit
Public Sub Move (Optional before As Object, Optional after As Object)

Parameter

before
Object

Lembar sebelum lembar yang dipindahkan akan ditempatkan. Anda tidak dapat menentukan Before apakah Anda menentukan After.

after
Object

Lembar setelah lembar yang dipindahkan akan ditempatkan. Anda tidak dapat menentukan After apakah Anda menentukan Before.

Contoh

Contoh kode berikut menggunakan Index properti untuk menampilkan nomor indeks lembar kerja saat ini sebelum dan sesudah memindahkan lembar kerja ke posisi terakhir dalam buku kerja dengan menggunakan Move metode .

Contoh ini untuk kustomisasi tingkat dokumen.

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

Keterangan

Jika Anda tidak menentukan atau BeforeAfter, Microsoft Office Excel membuat buku kerja baru yang berisi lembar yang dipindahkan.

Parameter Opsional

Untuk informasi tentang parameter opsional, lihat Parameter Opsional di Solusi Office.

Berlaku untuk