2017-09-21 14:56:46 +01:00
|
|
|
// http://officeopenxml.com/WPtextSpecialContent-break.php
|
2017-12-30 20:25:16 +00:00
|
|
|
import { XmlComponent } from "file/xml-components";
|
2016-07-07 18:57:44 +01:00
|
|
|
|
2021-05-24 17:12:10 +03:00
|
|
|
// <xsd:group name="EG_RunInnerContent">
|
|
|
|
// ...
|
|
|
|
// <xsd:element name="br" type="CT_Br"/>
|
|
|
|
|
|
|
|
// <xsd:complexType name="CT_Br">
|
|
|
|
// <xsd:attribute name="type" type="ST_BrType" use="optional"/>
|
|
|
|
// <xsd:attribute name="clear" type="ST_BrClear" use="optional"/>
|
|
|
|
// </xsd:complexType>
|
|
|
|
|
|
|
|
// <xsd:simpleType name="ST_BrType">
|
|
|
|
// <xsd:restriction base="xsd:string">
|
|
|
|
// <xsd:enumeration value="page"/>
|
|
|
|
// <xsd:enumeration value="column"/>
|
|
|
|
// <xsd:enumeration value="textWrapping"/>
|
|
|
|
// </xsd:restriction>
|
|
|
|
// </xsd:simpleType>
|
|
|
|
// <xsd:simpleType name="ST_BrClear">
|
|
|
|
// <xsd:restriction base="xsd:string">
|
|
|
|
// <xsd:enumeration value="none"/>
|
|
|
|
// <xsd:enumeration value="left"/>
|
|
|
|
// <xsd:enumeration value="right"/>
|
|
|
|
// <xsd:enumeration value="all"/>
|
|
|
|
// </xsd:restriction>
|
|
|
|
// </xsd:simpleType>
|
2016-07-07 18:57:44 +01:00
|
|
|
export class Break extends XmlComponent {
|
|
|
|
constructor() {
|
|
|
|
super("w:br");
|
|
|
|
}
|
2017-03-08 20:32:30 +00:00
|
|
|
}
|