set_officer_object {onbrand} | R Documentation |
Places Officer Object Into Onbrand Report Object
Description
After modifying a report object manually, you can return it to the onbrand object using this function.
Usage
set_officer_object(obnd, rpt = NULL, verbose = TRUE)
Arguments
obnd |
onbrand report object |
rpt |
officer object |
verbose |
Boolean variable when set to TRUE (default) messages will be displayed on the terminal; Messages will be included in the returned onbrand object. |
Value
onbrand object with the report replaced
See Also
Examples
obnd = read_template(
template = file.path(system.file(package="onbrand"), "templates", "report.pptx"),
mapping = file.path(system.file(package="onbrand"), "templates", "report.yaml"))
# pulling out the report
rpt = fetch_officer_object(obnd)$rpt
# Modifications would be made here with officer directly
# Replacing the report into the onbrand object
obnd = set_officer_object(obnd, rpt)
[Package onbrand version 1.0.5 Index]