openxlsx (version 4.2.5.2)

removeColWidths: Remove column widths from a worksheet

Description

Remove column widths from a worksheet

Usage

removeColWidths(wb, sheet, cols)

Arguments

wb

A workbook object

sheet

A name or index of a worksheet

cols

Indices of columns to remove custom width (if any) from.

Author

Alexander Walker

See Also

setColWidths()

Examples

Run this code
## Create a new workbook
wb <- loadWorkbook(file = system.file("extdata", "loadExample.xlsx", package = "openxlsx"))

## remove column widths in columns 1 to 20
removeColWidths(wb, 1, cols = 1:20)
if (FALSE) {
saveWorkbook(wb, "removeColWidthsExample.xlsx", overwrite = TRUE)
}

Run the code above in your browser using DataLab