officer (version 0.3.0)

ph_add_fpar: append fpar

Description

append fpar (a formatted paragraph) in a placeholder

Usage

ph_add_fpar(x, value, type = "body", id_chr = NULL, level = 1,
  par_default = TRUE)

Arguments

x

a pptx device

value

fpar object

type

placeholder type

id_chr

placeholder id (a string). This is to be used when a placeholder type is not unique in the current slide, e.g. two placeholders with type 'body'. Values can be read from slide_summary.

level

paragraph level

par_default

specify if the default paragraph formatting should be used.

See Also

fpar

Examples

Run this code
# NOT RUN {
library(magrittr)

bold_face <- shortcuts$fp_bold(font.size = 30)
bold_redface <- update(bold_face, color = "red")

fpar_ <- fpar(ftext("Hello ", prop = bold_face),
  ftext("World", prop = bold_redface ),
  ftext(", how are you?", prop = bold_face ) )

doc <- read_pptx() %>%
  add_slide(layout = "Title and Content", master = "Office Theme") %>%
  ph_empty(type = "body") %>%
  ph_add_fpar(value = fpar_, type = "body", level = 2)

print(doc, target = "ph_add_fpar.pptx")
# }

Run the code above in your browser using DataCamp Workspace