[]
Copies the sheet to another location in the workbook.
void Copy(string before = null, string after = null)
Sub Copy(Optional before As String = Nothing, Optional after As String = Nothing)
Type | Name | Description |
---|---|---|
string | before | The sheet before which the copied sheet will be placed. You cannot specify |
string | after | The sheet after which the copied sheet will be placed. You cannot specify |
Copies the sheet to another location in the workbook.
void Copy(int before = -1, int after = -1)
Sub Copy(Optional before As Integer = -1, Optional after As Integer = -1)
Type | Name | Description |
---|---|---|
int | before | The sheet before which the copied sheet will be placed. You cannot specify |
int | after | The sheet after which the copied sheet will be placed. You cannot specify |