powered by
Describes cell associated properties.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.cell.cell.html
Cell( worksheet, row = NULL, column = NULL, value = NULL, style_array = NULL, ... )
An openpyxl Python object.
worksheet
row
column
value
style_array
Additional arguments, i.e. kwargs.
Properties of interest include style, type, value, and address.
if (FALSE) { wb <- Workbook() ws <- ws$active Cell(worksheet = ws, row = 1L, column = 1L) }
Run the code above in your browser using DataLab