Cell {xlcharts}R Documentation

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

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

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

## End(Not run)


[Package xlcharts version 0.0.2 Index]