MergedCell {xlcharts} | R Documentation |
MergedCell
Description
Describes the properties of a cell in a merged cell and helps to display the borders of the merged cell.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html
Usage
MergedCell(worksheet, row = NULL, column = NULL, ...)
Arguments
worksheet |
worksheet |
row |
row |
column |
column |
... |
Additional arguments, i.e. kwargs. |
Details
The value of a MergedCell is always NULL.
Value
An openpyxl Python object.
Examples
## Not run:
wb <- Workbook()
MergedCell(worksheet = wb$active, row = 1L, column = 1L)
## End(Not run)
[Package xlcharts version 0.0.2 Index]