officer (version 0.3.1)

ph_slidelink: slide link to a placeholder

Description

add slide link to a placeholder in the current slide.

Usage

ph_slidelink(x, type = NULL, id_chr = NULL, slide_index)

Arguments

x

a pptx device

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.

slide_index

slide index to reach

Examples

Run this code
# NOT RUN {
fileout <- tempfile(fileext = ".pptx")
doc <- read_pptx()
doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme")
doc <- ph_with_text(x = doc, type = "title", str = "Un titre 1")
doc <- add_slide(doc, layout = "Title and Content", master = "Office Theme")
doc <- ph_with_text(x = doc, type = "title", str = "Un titre 2")
doc <- on_slide(doc, 1)
slide_summary(doc) # read column id here
doc <- ph_slidelink(x = doc, id_chr = "2", slide_index = 2)

print(doc, target = fileout )
# }

Run the code above in your browser using DataCamp Workspace