wdApplyTheme {R2wd} | R Documentation |
Apply a word template.
wdApplyTheme(theme, wdapp = .R2wd)
theme |
The name of the theme. |
wdapp |
The handle to the Word application (see details). |
This function applies the given Word template. Indicating the handle to
the Word application is usually not necessary (will be tacitely
initialized by the wdGet
function and assigned to the session
variable .R2wd.
This function is just a sketch on what could be done.
Christian Ritter
## Not run: ## apply a default theme with a blue background. wdApplyTheme("BlueCalm 100") ## remove the current theme wdApplyTheme("None") ## End(Not run)