show-methods {XLConnect} | R Documentation |
Display a workbook object
Description
Displays a workbook
by printing it. This actually calls the workbook
's
print
method.
Usage
## S4 method for signature 'workbook'
show(object)
Arguments
object |
The |
Author(s)
Martin Studer
Mirai Solutions GmbH https://mirai-solutions.ch
See Also
Examples
## Not run:
# 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)
## End(Not run)
[Package XLConnect version 1.0.10 Index]