Skip to content

MergedCellRange

Source code

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

library("xlcharts")

wb <- Workbook()
MergedCellRange(worksheet = wb$active, coord = "A1")