Files
docx-js/ts/docx/document/body/section-properties.ts

14 lines
371 B
TypeScript
Raw Normal View History

2016-03-31 23:01:20 +01:00
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"
}));
}
}