2018-01-12 00:12:39 +00:00
|
|
|
// http://officeopenxml.com/drwSp-SpPr.php
|
|
|
|
import { XmlComponent } from "file/xml-components";
|
|
|
|
import { Form } from "./form";
|
2018-01-16 01:31:47 +00:00
|
|
|
// import { NoFill } from "./no-fill";
|
|
|
|
// import { Outline } from "./outline/outline";
|
2018-01-12 00:12:39 +00:00
|
|
|
import { PresetGeometry } from "./preset-geometry/preset-geometry";
|
|
|
|
import { ShapePropertiesAttributes } from "./shape-properties-attributes";
|
|
|
|
|
|
|
|
export class ShapeProperties extends XmlComponent {
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super("pic:spPr");
|
|
|
|
|
|
|
|
this.root.push(new ShapePropertiesAttributes({
|
|
|
|
bwMode: "auto",
|
|
|
|
}));
|
|
|
|
|
|
|
|
this.root.push(new Form());
|
|
|
|
this.root.push(new PresetGeometry());
|
2018-01-16 01:31:47 +00:00
|
|
|
// this.root.push(new NoFill());
|
|
|
|
// this.root.push(new Outline());
|
2018-01-12 00:12:39 +00:00
|
|
|
}
|
|
|
|
}
|