Add more graphic files

This commit is contained in:
Dolan
2018-01-12 00:12:39 +00:00
parent ca244bcfe1
commit 392db1cd11
15 changed files with 173 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// http://officeopenxml.com/drwSp-SpPr.php
import { XmlComponent } from "file/xml-components";
import { Form } from "./form";
import { NoFill } from "./no-fill";
import { Outline } from "./outline/outline";
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());
this.root.push(new NoFill());
this.root.push(new Outline());
}
}