sheetVisibility | R Documentation |
Get and set worksheet visible state
sheetVisibility(wb)
sheetVisibility(wb) <- value
wb |
A workbook object |
value |
a logical/character vector the same length as sheetVisibility(wb) |
Character vector of worksheet names.
Vector of "hidden", "visible", "veryHidden"
wb <- createWorkbook()
addWorksheet(wb, sheetName = "S1", visible = FALSE)
addWorksheet(wb, sheetName = "S2", visible = TRUE)
addWorksheet(wb, sheetName = "S3", visible = FALSE)
sheetVisibility(wb)
sheetVisibility(wb)[1] <- TRUE ## show sheet 1
sheetVisibility(wb)[2] <- FALSE ## hide sheet 2
sheetVisibility(wb)[3] <- "hidden" ## hide sheet 3
sheetVisibility(wb)[3] <- "veryHidden" ## hide sheet 3 from UI
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.