MergedCellRange {xlcharts} | R Documentation |
MergedCellRange stores the border information of a merged cell in the top
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.merge.html
MergedCellRange(worksheet, coord, ...)
worksheet |
worksheet |
coord |
coord |
... |
Additional arguments, i.e. kwargs. |
left cell of the merged cell. The remaining cells in the merged cell are stored as MergedCell objects and get their border information from the upper left cell.
An openpyxl Python object.
## Not run:
wb <- Workbook()
MergedCellRange(worksheet = wb$active, coord = "A1")
## End(Not run)