Learn R Programming

xlcharts (version 0.0.1)

MergedCellRange: MergedCellRange

Description

MergedCellRange stores the border information of a merged cell in the top

https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.merge.html

Usage

MergedCellRange(worksheet, coord, ...)

Value

An openpyxl Python object.

Arguments

worksheet

worksheet

coord

coord

...

Additional arguments, i.e. kwargs.

Details

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.

Examples

Run this code
if (FALSE) {
wb <- Workbook()
MergedCellRange(worksheet = wb$active, coord = "A1")
}

Run the code above in your browser using DataLab