Files
docx-js/src/file/table-of-contents/sdt-properties.ts

13 lines
371 B
TypeScript
Raw Normal View History

2018-09-26 02:17:39 +01:00
// http://www.datypic.com/sc/ooxml/e-w_sdtPr-1.html
2022-11-03 00:30:16 +00:00
import { StringValueElement, XmlComponent } from "@file/xml-components";
2018-09-26 02:17:39 +01:00
export class StructuredDocumentTagProperties extends XmlComponent {
public constructor(alias?: string) {
super("w:sdtPr");
2023-06-25 03:09:29 +01:00
if (alias) {
this.root.push(new StringValueElement("w:alias", alias));
}
}
}