View source: R/ColumnDimension.R
ColumnDimension | R Documentation |
Information about the display properties of a column.
https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html
ColumnDimension(
worksheet,
index = "A",
width = 13L,
bestFit = FALSE,
hidden = FALSE,
outlineLevel = 0L,
outline_level = NULL,
collapsed = FALSE,
style = NULL,
min = NULL,
max = NULL,
customWidth = FALSE,
visible = NULL,
auto_size = NULL,
...
)
worksheet |
worksheet |
index |
index |
width |
width |
bestFit |
bestFit |
hidden | |
outlineLevel |
outlineLevel |
outline_level |
outline_level |
collapsed |
collapsed |
style |
style |
min |
min |
max |
max |
customWidth |
customWidth |
visible |
visible |
auto_size |
auto_size |
... |
Additional arguments, i.e. kwargs. |
An openpyxl Python object.
## Not run:
wb <- Workbook()
ws <- wb$active
ColumnDimension(worksheet = ws)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.