12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
![]() |
// https://www.datypic.com/sc/ooxml/e-m_barPr-1.html
|
||
|
import { XmlComponent } from "@file/xml-components";
|
||
|
|
||
|
import { MathBarPos } from "./math-bar-pos";
|
||
|
|
||
|
export class MathBarProperties extends XmlComponent {
|
||
|
public constructor(type: string) {
|
||
|
super("m:barPr");
|
||
|
this.root.push(new MathBarPos({ val: type }));
|
||
|
}
|
||
|
}
|