Files
docx-js/ts/docx/border.ts

24 lines
487 B
TypeScript
Raw Normal View History

2016-03-29 04:50:23 +01:00
import {P, Attributes} from "./xml-components";
class Border implements P {
private bottom: Array<P>;
constructor() {
this.bottom = new Array<P>();
this.bottom.push(new Attributes({
color: "auto",
space: "1",
val: "single",
sz: "6"
}));
}
}
export class ThematicBreak {
private pBdr: Array<P>;
constructor() {
this.pBdr = new Array<P>();
this.pBdr.push(new Border());
}
}