Files
docx-js/demo/48-vertical-align.ts
Tom Hunkapiller 730e33b164 fix demos
2021-05-26 10:53:27 +03:00

34 lines
1012 B
TypeScript

// Example of making content of section vertically aligned
// Import from 'docx' rather than '../build' if you install from npm
import * as fs from "fs";
import { Document, Packer, Paragraph, VerticalAlign, TextRun } from "../build";
const doc = new Document({
sections: [
{
properties: {
verticalAlign: VerticalAlign.CENTER,
},
children: [
new Paragraph({
children: [
new TextRun("Hello World"),
new TextRun({
text: "Foo Bar",
bold: true,
}),
new TextRun({
text: "\tGithub is the best",
bold: true,
}),
],
}),
],
},
],
});
Packer.toBuffer(doc).then((buffer) => {
fs.writeFileSync("My Document.docx", buffer);
});