WorksheetCopy {xlcharts} | R Documentation |
WorksheetCopy
Description
Copy the values, styles, dimensions, merged cells, margins, and
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.copier.html
Usage
WorksheetCopy(source_worksheet, target_worksheet, ...)
Arguments
source_worksheet |
source_worksheet |
target_worksheet |
target_worksheet |
... |
Additional arguments, i.e. kwargs. |
Details
print/page setup from one worksheet to another within the same workbook.
Value
An openpyxl Python object.
Examples
## Not run:
wb <- Workbook()
ws1 <- wb$active
ws2 <- wb$create_sheet("Mysheet")
WorksheetCopy(source_worksheet = ws1, target_worksheet = ws2)
## End(Not run)
[Package xlcharts version 0.0.2 Index]