Worksheet.Move(Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Moves the worksheet to another location in the workbook.
public void Move (object Before, object After);
abstract member Move : obj * obj -> unit
Public Sub Move (Optional Before As Object, Optional After As Object)
Parameters
- Before
- Object
The sheet before which the moved sheet will be placed. You cannot specify Before
if you specify After
.
- After
- Object
The sheet after which the moved sheet will be placed. You cannot specify After
if you specify Before
.
Remarks
If you do not specify either Before
or After
, Microsoft Office Excel creates a new workbook that contains the moved sheet.
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.