Sheets.Add Method
Creates a new worksheet, chart, or macro sheet. The new worksheet becomes the active sheet.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)
Assembly: Microsoft.Office.Interop.Excel (in microsoft.office.interop.excel.dll)
object Add( [In, Optional] object Before, [In, Optional] object After, [In, Optional] object Count, [In, Optional] object Type );
public System.Object Add( /*in*/System.Object Before, /*in*/System.Object After, /*in*/System.Object Count, /*in*/System.Object Type );
function Add(
Before : Object,
After : Object,
Count : Object,
Type : Object
) : Object;
Parameters
- Before
Optional Object. An object that specifies the sheet before which the new sheet is added.
- After
Optional Object. An object that specifies the sheet after which the new sheet is added.
- Count
Optional Object. The number of sheets to be added. The default value is one.
- Type
Optional Object. Specifies the sheet type. Can be one of the following XlSheetType constants: xlWorksheet, xlChart, xlExcel4MacroSheet, or xlExcel4IntlMacroSheet. If you are inserting a sheet based on an existing template, specify the path to the template. The default value is xlWorksheet.