Ziv-Barber / officegen

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.65k stars 471 forks source link

How can i set the page layout properties like page margins and all while generating docx #286

Closed robinskumar73 closed 5 years ago

Jodge commented 5 years ago
const officegen = require('officegen');

const docx = officegen({
  type: 'docx',
  pageMargins: {
    top: 1800,
    right: 1440,
    bottom: 1440,
    left: 1440
  }
});