Files
docx-js/src/file/paragraph/run/tab.ts

14 lines
408 B
TypeScript
Raw Normal View History

import { XmlComponent } from "@file/xml-components";
2016-06-10 15:03:44 +01:00
2021-05-24 17:12:10 +03:00
// <xsd:group name="EG_RunInnerContent">
// ...
// <xsd:element name="tab" type="CT_Empty" minOccurs="0"/>
//
// TODO: this is unused and undocumented currently.
// I think the intended use was for users to import, and insert as a child of `Run`.
2016-06-10 15:03:44 +01:00
export class Tab extends XmlComponent {
2022-08-31 07:52:27 +01:00
public constructor() {
2016-06-10 15:03:44 +01:00
super("w:tab");
}
2017-03-08 21:49:41 +00:00
}