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

15 lines
499 B
TypeScript
Raw Normal View History

2022-10-28 22:20:16 +01:00
// https://c-rex.net/projects/samples/ooxml/e1/Part4/OOXML_P4_DOCX_tab_topic_ID0EM6AO.html
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
}