RowDimension {xlcharts}R Documentation

RowDimension

Description

Information about the display properties of a row.

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

Usage

RowDimension(
  worksheet,
  index = 0L,
  ht = NULL,
  customHeight = NULL,
  s = NULL,
  customFormat = NULL,
  hidden = FALSE,
  outlineLevel = 0L,
  outline_level = NULL,
  collapsed = FALSE,
  visible = NULL,
  height = NULL,
  r = NULL,
  spans = NULL,
  thickBot = NULL,
  thickTop = NULL,
  ...
)

Arguments

worksheet

worksheet

index

index

ht

ht

customHeight

customHeight

s

s

customFormat

customFormat

hidden

hidden

outlineLevel

outlineLevel

outline_level

outline_level

collapsed

collapsed

visible

visible

height

height

r

r

spans

spans

thickBot

thickBot

thickTop

thickTop

...

Additional arguments, i.e. kwargs.

Value

An openpyxl Python object.

Examples

## Not run: 
wb <- Workbook()
RowDimension(wb$active)

## End(Not run)


[Package xlcharts version 0.0.2 Index]