
Display a workbook object
show-methods.RdArguments
- object
The
workbookto display
Author
Martin Studer
Mirai Solutions GmbH https://mirai-solutions.ch
Examples
if (FALSE) { # \dontrun{
# Load existing demo Excel file 'mtcars.xlsx' from the XLConnect package
wb.mtcars <- loadWorkbook(system.file("demoFiles/mtcars.xlsx",
package = "XLConnect"))
# Display the wb.mtcars object
wb.mtcars
# Alternatively, show can be called explicitely
show(wb.mtcars)
} # }