addFooter.pptx: Insert a footer shape into a document pptx object

Description Usage Arguments Value See Also Examples

View source: R/addFooter.pptx.R

Description

Insert a footer shape into the current slide of a pptx object.

Usage

1
2
## S3 method for class 'pptx'
addFooter(doc, value, ...)

Arguments

doc

pptx object

value

character value to add into the footer shape of the current slide.

...

further arguments, not used.

Value

a document object

See Also

pptx, addDate.pptx , addPageNumber.pptx

Examples

1
2
3
4
5
6
if( check_valid_java_version() ){
doc = pptx( )
doc = addSlide( doc, slide.layout = "Title and Content" )
doc = addFooter( doc, "Hi!" )
writeDoc( doc, file = "ex_footer.pptx" )
}

davidgohel/ReporteRs documentation built on March 23, 2020, 11 p.m.