2018-09-26 02:17:39 +01:00
|
|
|
// http://www.datypic.com/sc/ooxml/e-w_sdtPr-1.html
|
2022-06-26 23:26:42 +01:00
|
|
|
import { XmlComponent } from "@file/xml-components";
|
2018-09-19 11:01:07 -03:00
|
|
|
import { Alias } from "./alias";
|
|
|
|
|
2018-09-26 02:17:39 +01:00
|
|
|
export class StructuredDocumentTagProperties extends XmlComponent {
|
2022-08-31 07:52:27 +01:00
|
|
|
public constructor(alias: string) {
|
2018-09-20 10:47:10 -03:00
|
|
|
super("w:sdtPr");
|
2018-09-19 11:01:07 -03:00
|
|
|
this.root.push(new Alias(alias));
|
|
|
|
}
|
|
|
|
}
|