ph_slidelink {officer} | R Documentation |
add slide link to a placeholder in the current slide.
ph_slidelink(x, type = NULL, id_chr = NULL, ph_label = NULL, slide_index)
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 |
ph_label |
label associated to the placeholder. Use column
|
slide_index |
slide index to reach |
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 ph_label here doc <- ph_slidelink(x = doc, ph_label = "Title 1", slide_index = 2) print(doc, target = fileout )