Skip to content

Cell

Source code

Description

Describes cell associated properties.

https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html

Usage

Cell(
  worksheet,
  row = NULL,
  column = NULL,
  value = NULL,
  style_array = NULL,
  ...
)

Arguments

worksheet worksheet
row row
column column
value value
style_array style_array
Additional arguments, i.e. kwargs.

Details

Properties of interest include style, type, value, and address.

Value

An openpyxl Python object.

Examples

library("xlcharts")

wb <- Workbook()
ws <- ws$active
Cell(worksheet = ws, row = 1L, column = 1L)