MergedCellRange {xlcharts}R Documentation

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, ...)

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.

Value

An openpyxl Python object.

Examples

## Not run: 
wb <- Workbook()
MergedCellRange(worksheet = wb$active, coord = "A1")

## End(Not run)


[Package xlcharts version 0.0.2 Index]