Learn R Programming

R2PPT (version 2.2.0)

PPT.AddTitleSlide: Add a title slide to current PowerPoint presentation

Description

Adds a slide to the current PowerPoint presentation of Microsoft type 'ppLayoutTitle'.

Usage

PPT.AddTitleSlide(ppt, title = NULL, subtitle = NULL, title.font = NULL, 
title.fontsize = NULL, subtitle.font = NULL, subtitle.fontsize = NULL)

Arguments

ppt

Required list of COM objects as initialised by PPT.Init. See example.

title

Optional title text.

subtitle

Optional subtitle text.

title.font

Optional character title font.

title.fontsize

Optional numeric title font size.

subtitle.font

Optional character subtitle font.

subtitle.fontsize

Optional numeric subtitle font size.

Value

ppt

Invisibly returns a list of COM objects.

Warning

You must save the returned list of COM objects initialised with PPT.Init to an R object. See the example.

References

See https://github.com/omegahat/RDCOMClient for more details on RDCOMClient and https://github.com/waynegitshell/R2PPT/ for R2PPT source code.

See Also

PPT.Init,PPT.AddTitleSlide,PPT.AddTextSlide, PPT.AddTitleOnlySlide,PPT.Present,PPT.ApplyTemplate,PPT.AddGraphicstoSlide

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
myPres<-PPT.Init() 
myPres<-PPT.AddBlankSlide(myPres)
myPres<-PPT.AddTitleSlide(myPres,title="Title Slide",subtitle="Subtitle here")
myPres<-PPT.AddTitleOnlySlide(myPres,title="Title Only",title.fontsize=40,title.font="Arial")
myPres<-PPT.AddTextSlide(myPres,title="Text Slide",text="Text1 \rText2 \rText3",text.font="Arial")
rm(myPres)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab