Set / remove custom worksheet row heights
Usage
wb_set_row_heights(
wb,
sheet = current_sheet(),
rows,
heights = NULL,
hidden = FALSE
)
wb_remove_row_heights(wb, sheet = current_sheet(), rows)
Arguments
- wb
A wbWorkbook object
- sheet
A name or index of a worksheet. (A vector is accepted for
remove_row_heights()
)- rows
Indices of rows to set / remove (if any) custom height.
- heights
Heights to set
rows
to specified in a spreadsheet column height units.Option to hide rows. A logical vector of length 1 or length of
rows
See also
Other workbook wrappers:
base_font-wb
,
col_widths-wb
,
creators-wb
,
grouping-wb
,
wb_add_chartsheet()
,
wb_add_data()
,
wb_add_data_table()
,
wb_add_formula()
,
wb_add_hyperlink()
,
wb_add_pivot_table()
,
wb_add_slicer()
,
wb_add_worksheet()
,
wb_base_colors
,
wb_clone_worksheet()
,
wb_copy_cells()
,
wb_freeze_pane()
,
wb_merge_cells()
,
wb_save()
,
wb_set_last_modified_by()
,
wb_workbook()
Other worksheet content functions:
col_widths-wb
,
filter-wb
,
grouping-wb
,
named_region-wb
,
wb_add_conditional_formatting()
,
wb_add_data()
,
wb_add_data_table()
,
wb_add_formula()
,
wb_add_hyperlink()
,
wb_add_pivot_table()
,
wb_add_slicer()
,
wb_add_thread()
,
wb_freeze_pane()
,
wb_merge_cells()
Examples
## Create a new workbook
wb <- wb_workbook()
## Add a worksheet
wb$add_worksheet("Sheet 1")
## set row heights
wb <- wb_set_row_heights(
wb, 1,
rows = c(1, 4, 22, 2, 19),
heights = c(24, 28, 32, 42, 33)
)
## overwrite row 1 height
wb <- wb_set_row_heights(wb, 1, rows = 1, heights = 40)
## remove any custom row heights in row 1
wb$remove_row_heights(sheet = 1, rows = 1)