getDefinedNames-methods.Rd
Retrieves the defined names in a workbook
.
# S4 method for class 'workbook'
getDefinedNames(object, validOnly, worksheetScope)
The workbook
to use
If validOnly = TRUE
only names with valid references
are returned. Valid references are ones not starting with #REF! or
#NULL! - which could result e.g. due to a missing sheet reference. The default
value for validOnly
is TRUE
.
Optional - the name of the worksheet in which the names are scoped;
to only query names in the global scope, use the value ""
If option XLConnect.setCustomAttributes
is TRUE
(default FALSE
),
a list of the worksheet scopes in which the names were found is set as attribute worksheetScope
on the result.
if (FALSE) { # \dontrun{
# mtcars xlsx file from demoFiles subfolder of package XLConnect
mtcarsFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook
wb <- loadWorkbook(mtcarsFile)
# Retrieve defined names with valid references
getDefinedNames(wb)
} # }