Files
docx-js/src/file/paragraph/formatting/border.ts

24 lines
535 B
TypeScript
Raw Normal View History

2017-09-22 14:46:19 +01:00
// http://officeopenxml.com/WPborders.php
import { Attributes, XmlComponent } from "file/xml-components";
2016-03-29 04:50:23 +01:00
2016-04-09 20:16:35 +01:00
class Border extends XmlComponent {
2016-03-29 04:50:23 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:bottom");
2018-01-23 01:33:12 +00:00
this.root.push(
new Attributes({
color: "auto",
space: "1",
val: "single",
sz: "6",
}),
);
2016-03-29 04:50:23 +01:00
}
}
2016-04-09 20:16:35 +01:00
export class ThematicBreak extends XmlComponent {
2016-03-29 04:50:23 +01:00
constructor() {
2016-04-09 20:16:35 +01:00
super("w:pBdr");
this.root.push(new Border());
2016-03-29 04:50:23 +01:00
}
2017-03-08 21:36:09 +00:00
}