openxlsx (version 4.2.3)

showGridLines: 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 FALSE, grid lines are hidden.

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataCamp Workspace