다음을 통해 공유


WorksheetBase.Move(Object, Object) 메서드

정의

워크시트를 통합 문서의 다른 위치로 이동합니다.

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

매개 변수

before
Object

이동한 시트를 삽입할 위치의 뒤에 있는 시트입니다. After를 지정하는 경우 Before를 지정할 수 없습니다.

after
Object

이동한 시트를 삽입할 위치의 앞에 있는 시트입니다. Before를 지정하는 경우 After를 지정할 수 없습니다.

예제

다음 코드 예제에서는 사용 하 Index 여 현재 워크시트의 인덱스 번호를 표시 하는 속성을 사용 하 여 Move 통합 문서의 마지막 위치로 워크시트를 이동 한 후는 메서드.

이 예제는 문서 수준 사용자 지정을 위한 것입니다.

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

설명

또는 After를 지정 Before 하지 않으면 Microsoft Office Excel에서 이동된 시트가 포함된 새 통합 문서를 만듭니다.

선택적 매개 변수

선택적 매개 변수에 대한 자세한 내용은 Office 솔루션의 선택적 매개 변수를 참조하세요.

적용 대상