XLConnect (version 0.2-14)

unhideSheet-methods: Unhiding worksheets in a workbook

Description

Unhides the specified worksheets in a '>workbook.

Usage

# S4 method for workbook,character
unhideSheet(object,sheet)
# S4 method for workbook,numeric
unhideSheet(object,sheet)

Arguments

object

The '>workbook to use

sheet

The name or index of the sheet to unhide

See Also

'>workbook, hideSheet, isSheetHidden, isSheetVeryHidden, isSheetVisible

Examples

Run this code
# NOT RUN {
# Load workbook (create if not existing)
wb <- loadWorkbook("unhideWorksheet.xlsx", create = TRUE)

# Create sheet 'airquality'
createSheet(wb, name = "airquality")

# Write the built-in data set airquality to worksheet
# 'airquality'
writeWorksheet(wb, airquality, sheet = "airquality")

# Create sheet 'CO2'
createSheet(wb, name = "CO2")

# Write the built-in data set CO2 to worksheet 'C02'
writeWorksheet(wb, CO2, sheet = "CO2")

# Hide sheet 'airquality'
hideSheet(wb, sheet = "airquality")

# Unhide sheet 'airquality'
unhideSheet(wb, sheet = "airquality")
# }

Run the code above in your browser using DataCamp Workspace