21 lines
515 B
TypeScript
21 lines
515 B
TypeScript
// http://officeopenxml.com/WPparagraphProperties.php
|
|
import { XmlComponent } from "file/xml-components";
|
|
import { Border } from "./formatting/border";
|
|
|
|
export class ParagraphProperties extends XmlComponent {
|
|
public readonly paragraphBorder: Border;
|
|
|
|
constructor() {
|
|
super("w:pPr");
|
|
this.paragraphBorder = new Border();
|
|
}
|
|
|
|
public createBorder(): void {
|
|
this.push(this.paragraphBorder);
|
|
}
|
|
|
|
public push(item: XmlComponent): void {
|
|
this.root.push(item);
|
|
}
|
|
}
|