Worksheet.Copy(Object, Object) Method

Definition

Copies the worksheet to another location in the workbook.

public void Copy (object Before, object After);
abstract member Copy : obj * obj -> unit
Public Sub Copy (Optional Before As Object, Optional After As Object)

Parameters

Before
Object

The sheet before which the copied sheet will be placed. You cannot specify Before if you specify After.

After
Object

The sheet after which the copied sheet will be placed. You cannot specify After if you specify Before.

Remarks

The new worksheet is a Microsoft.Office.Interop.Excel.Worksheet object and does not have the code or data binding capability that Microsoft.Office.Tools.Excel.Worksheet host items have.

If you do not specify either Before or After, Microsoft Office Excel creates a new workbook that contains the copied sheet.

Optional Parameters

For information on optional parameters, see Optional Parameters in Office Solutions.

Applies to