sheet_visibility-wb | R Documentation |
Get and set worksheet visible state. This allows to hide worksheets from the workbook.
The visibility of a worksheet can either be "visible", "hidden", or "veryHidden".
You can set this when creating a worksheet with wb_add_worksheet(visible = FALSE)
wb_get_sheet_visibility(wb)
wb_set_sheet_visibility(wb, sheet = current_sheet(), value)
wb |
A |
sheet |
Worksheet identifier |
value |
a logical/character vector the same length as sheet, if providing a character vector, you can provide any of "hidden", "visible", or "veryHidden" |
wb_set_sheet_visibility
: The Workbook object, invisibly.
wb_get_sheet_visibility()
: A character vector of the worksheet visibility value
wb <- wb_workbook()
wb$add_worksheet(sheet = "S1", visible = FALSE)
wb$add_worksheet(sheet = "S2", visible = TRUE)
wb$add_worksheet(sheet = "S3", visible = FALSE)
wb$get_sheet_visibility()
wb$set_sheet_visibility(1, TRUE) ## show sheet 1
wb$set_sheet_visibility(2, FALSE) ## hide sheet 2
wb$set_sheet_visibility(3, "hidden") ## hide sheet 3
wb$set_sheet_visibility(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.