 | WorkbookCopyWorksheetTo(Int32, String, Workbook, Boolean) Method |
Copies a worksheet of the current workbook by its index into another workbook
Namespace: NanoXLSXAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntaxpublic Worksheet CopyWorksheetTo(
int sourceWorksheetIndex,
string newWorksheetName,
Workbook targetWorkbook,
bool sanitizeSheetName = true
)
Parameters
- sourceWorksheetIndex Int32
- Index of the worksheet to copy, originated in this workbook
- newWorksheetName String
- Name of the new worksheet (copy)
- targetWorkbook Workbook
- Workbook to copy the worksheet into
- sanitizeSheetName Boolean (Optional)
- If true, the new name will be automatically sanitized if a name collision occurs
Return Value
WorksheetCopied worksheet
RemarksThe copy is not set as current worksheet. The existing one is kept
See Also