getShinyOption
retrieves the value of a Shiny option.
shinyOptions
sets the value of Shiny options; it can also be used to
return a list of all currently-set Shiny options.
getShinyOption(name, default = NULL)
shinyOptions(...)
name = value
.runApp
, that option set is duplicated
and the new option set is available for getting or setting values. If options
are set from global.R, app.R, ui.R, or server.R, or if they are set from
inside the server function, then the options will be scoped to the
application. When the application exits, the new option set is discarded and
the global option set is restored.
## Not run:
# shinyOptions(myOption = 10)
# getShinyOption("myOption")
# ## End(Not run)
Run the code above in your browser using DataLab