Standalone Office Open XML files (Microsoft Office 2007 and later) generator for Word (docx), PowerPoint (pptx) and Excell (xlsx) in javascript. The output is a stream.
MIT License
2.66k
stars
471
forks
source link
how to set header and footer inside docx using officegen #391
I am using office gen( open xml) to create docx file using node js. I am facing issue where i am not able to set header and footer inside the document file.
I am using office gen( open xml) to create docx file using node js. I am facing issue where i am not able to set header and footer inside the document file.
docx.getHeader().setTextLeft() docx.getHeader().setTextRight()
docx.getFooter().setTextLeft() docx.getFooter().setTextRight()
But above lines of codes throws error "get header is not a function" "get footer is not a function"
Please help me to fix this isseu