PPT.AddTextSlide {R2PPT}R Documentation

Add a title slide to current PowerPoint presentation

Description

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

Usage

PPT.AddTextSlide(ppt, title = NULL, title.fontsize = NULL, title.font = NULL, text = NULL, text.fontsize = NULL, text.font = NULL)

Arguments

ppt Required list of objects of class 'COMobject' as initialised by PPT.Init. See example.
title Optional title text.
title.fontsize Optional numeric title font size.
title.font Optional character title font.
text Optional character text.
text.fontsize Optional numeric text font size.
text.font Optional character text font.

Value

ppt Invisibly returns an updated list of objects of class 'COMobject'.

Warning

You must update the list of ComObjects initialised with PPT.Init when you call this function. See the example.

Author(s)

Wayne Jones wayne_betws@hotmail.com

References

See http://sunsite.univie.ac.at/rcom for more details on rcom.

See Also

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

Examples


## Not run: 
myPres<-PPT.Init(visible=TRUE)
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)
## End(Not run) 


[Package R2PPT version 1.0 Index]