print-methods.Rd
Prints the workbook
's underlying filename.
# S4 method for class 'workbook'
print(x,...)
The workbook
to print
Arguments passed on to standard print
Prints the specified workbook
's filename (see also the S4 filename
slot of the workbook
class).
if (FALSE) { # \dontrun{
# Load existing demo Excel file 'mtcars.xlsx' from the XLConnect package
wb.mtcars <- loadWorkbook(system.file("demoFiles/mtcars.xlsx",
package = "XLConnect"))
# Print the workbook's underlying filename
print(wb.mtcars)
} # }