added body
This commit is contained in:
14
ts/docx/document/body/section-properties.ts
Normal file
14
ts/docx/document/body/section-properties.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import {XmlComponent, Attributes} from "../../xml-components";
|
||||
|
||||
export class SectionProperties {
|
||||
private sectPr: Array<XmlComponent>;
|
||||
|
||||
constructor() {
|
||||
this.sectPr = new Array<XmlComponent>();
|
||||
this.sectPr.push(new Attributes({
|
||||
rsidR: "00B64E8F",
|
||||
rsidRPr: "00D842E4",
|
||||
rsidSect: "000A6AD0"
|
||||
}));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user