showGridLines {openxlsx} | R Documentation |
Set worksheet gridlines to show or hide.
Description
Set worksheet gridlines to show or hide.
Usage
showGridLines(wb, sheet, showGridLines = FALSE)
Arguments
wb |
A workbook object |
sheet |
A name or index of a worksheet |
showGridLines |
A logical. If |
Author(s)
Alexander Walker
Examples
wb <- loadWorkbook(file = system.file("extdata", "loadExample.xlsx", package = "openxlsx"))
names(wb) ## list worksheets in workbook
showGridLines(wb, 1, showGridLines = FALSE)
showGridLines(wb, "testing", showGridLines = FALSE)
## Not run:
saveWorkbook(wb, "showGridLinesExample.xlsx", overwrite = TRUE)
## End(Not run)
[Package openxlsx version 4.2.6.1 Index]