Learn R Programming

xlcharts (version 0.0.1)

Cell: Cell

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

Value

An openpyxl Python object.

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.

Examples

Run this code
if (FALSE) {
wb <- Workbook()
ws <- ws$active
Cell(worksheet = ws, row = 1L, column = 1L)
}

Run the code above in your browser using DataLab