ColumnDimension {xlcharts}R Documentation

ColumnDimension

Description

Information about the display properties of a column.

https://openpyxl.readthedocs.io/en/stable/api/openpyxl.worksheet.dimensions.html

Usage

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

Arguments

worksheet

worksheet

index

index

width

width

bestFit

bestFit

hidden

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.

Value

An openpyxl Python object.

Examples

## Not run: 
wb <- Workbook()
ws <- wb$active
ColumnDimension(worksheet = ws)

## End(Not run)


[Package xlcharts version 0.0.2 Index]