
Last chance! 50% off unlimited learning
Sale ends in
Write the pptx
object in a '.pptx' file.
# S3 method for pptx
writeDoc(doc, file, ...)
pptx
object that has to be
written.
single character value, name of the file to write.
further arguments, not used.
# NOT RUN {
#START_TAG_TEST
# Create a new document
doc = pptx( title = "title" )
# add a slide with layout "Title and Content"
doc = addSlide( doc, slide.layout = "Title and Content" )
# add a dummy text in the content shape
doc = addParagraph(doc, "Hello Word!")
# Write the object in file "writeDoc_example.pptx"
writeDoc( doc, "writeDoc_example.pptx" )
#STOP_TAG_TEST
# }
Run the code above in your browser using DataLab