openxlsx (version 4.2.5.2)

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.

Author

Alexander Walker

Examples

Run this code
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)
if (FALSE) {
saveWorkbook(wb, "showGridLinesExample.xlsx", overwrite = TRUE)
}

Run the code above in your browser using DataLab